/* Styles pour l'affichage du statut de connexion */
.user-status {
    display: flex;
    align-items: center;
    margin-left: 10px;
    font-size: 0.9rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4CAF50;
    margin-right: 5px;
}

.user-type {
    color: #333;
    font-weight: 500;
}

/* Styles pour le bouton de connexion */
.login-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary);
    color: white;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: var(--primary-dark);
}

/* Styles pour les comptes de démonstration */
.demo-accounts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.demo-account-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 300px;
    text-align: center;
}

.demo-account-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.demo-account-card p {
    margin-bottom: 10px;
}

.demo-account-card .btn {
    margin-top: 15px;
}

/* Styles pour la grille des domaines d'expertise */
.domains-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.domain-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.domain-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-icon img {
    max-width: 100%;
    max-height: 100%;
}

.domain-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.domain-card p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .domains-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .domain-card {
        padding: 15px;
    }
    
    .domain-icon {
        width: 50px;
        height: 50px;
    }
}
