﻿
/* ===========================================
   PARTICIPANTS DETAILS STYLES
   =========================================== */

/* Détails des participants */
.participant-details {
    color: #e4e4e7;
}

.participant-detail-section {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 255, 0.1);
}

.participant-detail-section h4 {
    color: #c9a9ff;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    color: #a1a1aa;
    font-size: 0.85rem;
    font-weight: 500;
}

.detail-value {
    color: #e4e4e7;
    font-size: 1rem;
}
