/* Palette: Rouge (#D32F2F), Blanc (#FFFFFF), Gris Clair (#F5F5F5) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F5F5F5;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.container {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid #D32F2F;
    animation: slideInUp 0.8s ease-out;
}

h1 {
    color: #D32F2F;
    font-weight: 600;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out;
}

p.subtitle {
    color: #666;
    margin-bottom: 30px;
}

.logo-area {
    font-size: 50px;
    color: #D32F2F;
    margin-bottom: 20px;
}

.btn-microsoft {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border: 2px solid #D32F2F;
    background: white;
    color: #D32F2F;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-microsoft:hover {
    background: #D32F2F;
    color: white;
    animation: pulseRed 1s infinite;
}

.dashboard-container {
    max-width: 800px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #D32F2F;
}
/* Barre de recherche */
.search-bar input:focus {
    outline: none;
    border-color: #D32F2F;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* Bouton suivi */
.btn-suivi {
    background: #8B5CF6 !important;
}

.btn-suivi:hover {
    background: #7C3AED !important;
}

/* Badge de suivi personnalisé */
.badge-suivi {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Email supplémentaire */
.client-email.supplementaire {
    color: #10B981;
}

.client-email.supplementaire::before {
    content: '📧 ';
}

/* Numéro de soumission */
.numero-soumission {
    font-weight: 700;
    color: #D32F2F;
    font-size: 16px;
}