.account-settings-page {
    min-height: 100vh;
    background-color: #f8f9fa;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 2rem;
}

.account-settings-page .card {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: white;
}

.account-settings-page .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 0.75rem;
}

.account-settings-page .form-label {
    font-weight: 500;
    color: #4B5563;
    margin-bottom: 0.5rem;
}

.account-settings-page .form-control {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.95rem;
}

.account-settings-page .form-control:focus {
    border-color: #EDB809;
    box-shadow: 0 0 0 3px rgba(237, 184, 9, 0.1);
}

.account-settings-page .form-control[readonly] {
    background-color: #F3F4F6;
    cursor: not-allowed;
}

.form-text-value {
    margin-left: 0.5rem;
    color: #1F2937;
    font-size: 0.95rem;
    font-weight: 400;
}

.btn-primary-custom {
    background-color: #EDB809;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-primary-custom:hover {
    background-color: #D4A408;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 184, 9, 0.3);
}

.btn-primary-custom:active {
    transform: translateY(0);
}

.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.alert-success {
    background-color: #D1FAE5;
    border: 1px solid #10B981;
    color: #065F46;
}

.alert-danger {
    background-color: #FEE2E2;
    border: 1px solid #EF4444;
    color: #991B1B;
}

.alert-info {
    background-color: #DBEAFE;
    border: 1px solid #3B82F6;
    color: #1E40AF;
}

/* Modal customization */
.modal-content {
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.modal-header {
    border-bottom: 2px solid #E5E7EB;
    padding: 1.25rem 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: #1F2937;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid #E5E7EB;
    padding: 1rem 1.5rem;
}

.btn-secondary {
    background-color: #6B7280;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    background-color: #4B5563;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
    }
    
    .account-settings-page .card {
        margin-bottom: 1rem;
    }
}
