.privacy-settings-modal {
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.privacy-settings-modal h2 {
    margin: 0 0 24px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.retention-policy-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.retention-policy-form > label {
    font-size: 14px;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: -8px;
}

.retention-controls {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.retention-controls input[type="number"] {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    transition: all 0.2s ease;
    outline: none;
}

.retention-controls input[type="number"]:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.retention-controls input[type="number"]:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.retention-controls select {
    flex: 1.5;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a4a4a' d='M6 8L0 2l1.41-1.41L6 5.17l4.59-4.58L12 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.retention-controls select:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.retention-controls select:hover {
    border-color: #b0b0b0;
}

#saveRetentionPolicy {
    padding: 14px 24px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

#saveRetentionPolicy:hover {
    background: linear-gradient(135deg, #357abd 0%, #2868a6 100%);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

#saveRetentionPolicy:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

/* Loading state */
.privacy-settings-modal:has(:only-child:not(.retention-policy-form)) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #999;
    font-size: 16px;
}