/* ... (Garder le début du code précédent) ... */

.hidden { display: none !important; }

.container { padding: 40px 5%; }

/* ESPACE CLIENT */
#espace-client {
    background: #f0f4f8;
    padding: 40px 5%;
    border-bottom: 2px solid var(--or-logi);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card h3 { color: var(--bleu-logi); margin-bottom: 15px; border-bottom: 1px solid #eee; }

.card ul { list-style: none; }
.card li { margin-bottom: 10px; font-size: 0.95rem; display: flex; justify-content: space-between; }

/* MODAL */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
}

.modal-content {
    background: white; padding: 30px; border-radius: 15px; width: 90%; max-width: 400px;
    position: relative; text-align: center;
}

.modal-content input {
    width: 100%; padding: 12px; margin: 10px 0;
    border: 1px solid #ddd; border-radius: 5px;
}

.close { position: absolute; right: 15px; top: 10px; font-size: 24px; cursor: pointer; }