/* ============================================================================
   STYLES POUR PAPS - COMPOSITION MÉNAGE
   ============================================================================ */

.section-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.empty-state {
    display: none;
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.empty-state.visible {
    display: block;
}

#paps_membresTable {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin-top: 20px;
}

#paps_membresTable thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

#paps_membresTable th {
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9em;
    white-space: nowrap;
}

#paps_membresTable td {
    padding: 8px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
}

#paps_membresTable td input,
#paps_membresTable td select {
    width: 100%;
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9em;
}

#paps_membresTable td input:focus,
#paps_membresTable td select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.numero-cell {
    text-align: center;
    font-weight: 600;
    color: #667eea;
    font-size: 1.1em;
}

.btn-remove-row {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-remove-row:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.vulnerability-type-select {
    display: none;
}

.vulnerability-type-select.visible {
    display: block;
}

/* Styles pour les statistiques */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    text-align: center;
}

.stat-card .label {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 5px;
}

.stat-card .value {
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
}

/* Responsive */
@media (max-width: 1200px) {
    .table-container {
        overflow-x: auto;
    }
    
    #paps_membresTable {
        min-width: 1200px;
    }
}

@media (max-width: 768px) {
    .section-title-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-title-wrapper .btn {
        width: 100%;
    }
}