/* Account Settings Styles */
.account-settings {
    max-width: 600px;
    margin: 2rem auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0);
}

.account-option {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.account-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.account-option h3 {
    margin-top: 0;
    color: #333;
}

.account-option p {
    margin-bottom: 1rem;
    color: #666;
}

.hide-account, .unhide-account, .request-delete-account {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.hide-account, .request-delete-account {
    background: #c03732;
    color: white;
}

.hide-account:hover, .request-delete-account:hover {
    background: #a0302a;
}

.unhide-account {
    background: #2EC4B6;
    color: white;
}

.unhide-account:hover {
    background: #20A89A;
}
