/* Settings page */

.settings-section {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.settings-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.settings-users-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.settings-users-table th {
    text-align: left;
    padding: 8px 12px;
    font-weight: 600;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
    font-size: 12px;
    text-transform: uppercase;
}

.settings-users-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}
.settings-users-table tr:last-child td { border-bottom: none; }

@media (max-width: 768px) {
    .settings-users-table { font-size: 12px; }
}