/* Button Styles for Header — Elizabeth & Associates */
.ea-header-buttons-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

/* Base style for both buttons to ensure consistency */
.ea-btn-connexion, .ea-btn-demarrer {
    text-decoration: none !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    font-family: 'Montserrat', sans-serif !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Green Button: CONNEXION */
.ea-btn-connexion {
    background-color: #2ecc71 !important; /* Premium Green */
    color: white !important;
}

.ea-btn-connexion:hover {
    background-color: #27ae60 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.4) !important;
}

.ea-btn-connexion i {
    font-size: 18px;
}

/* Blue Button: DÉMARRER UN DOSSIER */
.ea-btn-demarrer {
    background-color: #00a8cc !important; /* Premium Blue */
    color: white !important;
}

.ea-btn-demarrer:hover {
    background-color: #0091b3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(0, 168, 204, 0.4) !important;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .ea-header-buttons-container {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 600px) {
    .ea-header-buttons-container {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .ea-btn-connexion, .ea-btn-demarrer {
        width: 100% !important;
        justify-content: center !important;
    }
}
