﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.dx-menu .eppetech-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: transparent;
    max-width: fit-content;
}

.dx-menu .login-logo {
    width: 40px;
    height: auto;
    object-fit: contain;
    margin-right: 0.5rem;
}

.dx-menu .eppetech-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dx-menu .eppetech-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: dodgerblue;
    line-height: 1.2;
}

.dx-menu .software-solution {
    display: flex;
    gap: 0.25rem;
}

.dx-menu .software {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e63946;
}

.dx-menu .solution {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
}

@media (max-width: 480px) {
    .dx-menu .eppetech-container {
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .dx-menu .eppetech-text {
        font-size: 1rem;
    }

    .dx-menu .software,
    .dx-menu .solution {
        font-size: 0.8rem;
    }

    .dx-menu .login-logo {
        width: 32px;
    }
}

/* Main Layout and Sticky Footer */
.main-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1 0 auto;
}

.eppetech-footer {
    flex-shrink: 0;
    background: linear-gradient(135deg, #FFC107 0%, #00BCD4 100%);
    padding: 1.5rem;
    color: #1a1a1a;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: #e63946;
    }

.footer-social {
    display: flex;
    gap: 1rem;
}

    .footer-social a {
        color: #1a1a1a;
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

        .footer-social a:hover {
            color: #e63946;
        }

.footer-copyright {
    font-size: 0.9rem;
    font-weight: 400;
}

@media (max-width: 480px) {
    .footer-links {
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .footer-social a {
        font-size: 1.2rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}
