body {
            background-color: #f9fafb;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .delete-account-container {
            max-width: 800px;
            margin: 2rem auto;
            padding: 0 1rem;
            flex: 1;
        }

        .page-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .page-header h1 {
            color: #dc2626;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .page-header p {
            color: #6b7280;
            font-size: 1rem;
        }

        .delete-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .warning-box {
            background-color: #fee2e2;
            border: 2px solid #fca5a5;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .warning-box h3 {
            color: #dc2626;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .warning-box ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .warning-box li {
            margin-bottom: 0.5rem;
            color: #374151;
        }

        .form-section {
            margin-bottom: 2rem;
        }

        .form-section h3 {
            color: #374151;
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .reason-option {
            display: flex;
            align-items: center;
            padding: 0.75rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            margin-bottom: 0.75rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .reason-option:hover {
            border-color: #3b82f6;
            background-color: #f9fafb;
        }

        .reason-option.selected {
            border-color: #3b82f6;
            background-color: #eff6ff;
        }

        .reason-option input[type="radio"] {
            margin-right: 0.75rem;
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .reason-option label {
            cursor: pointer;
            flex: 1;
            color: #374151;
            font-weight: 500;
        }

        .custom-reason-input {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            margin-top: 0.5rem;
        }

        .custom-reason-input:focus {
            outline: none;
            border-color: #3b82f6;
        }

        .confirmation-section {
            background-color: #fef3c7;
            border: 2px solid #fbbf24;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .confirmation-section h3 {
            color: #92400e;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .confirmation-checkbox {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .confirmation-checkbox input[type="checkbox"] {
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .confirmation-checkbox label {
            cursor: pointer;
            color: #374151;
            font-weight: 500;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #374151;
            font-weight: 600;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="password"] {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }

        .form-group input[type="text"]:focus,
        .form-group input[type="email"]:focus,
        .form-group input[type="password"]:focus {
            outline: none;
            border-color: #3b82f6;
        }

        .form-group input[readonly] {
            background-color: #f9fafb;
        }

        .form-group small {
            color: #6b7280;
            font-size: 0.875rem;
            display: block;
            margin-top: 0.25rem;
        }

        .action-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
            text-decoration: none;
        }

        .btn-secondary {
            background-color: #e5e7eb;
            color: #374151;
        }

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

        .btn-danger {
            background-color: #dc2626;
            color: white;
        }

        .btn-danger:hover {
            background-color: #b91c1c;
        }

        .btn-danger:disabled {
            background-color: #9ca3af;
            cursor: not-allowed;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
            align-items: center;
            gap: 0.5rem;
        }

        .notification.show {
            display: flex;
        }

        .notification.success {
            background-color: #d1fae5;
            border: 2px solid #34d399;
            color: #065f46;
        }

        .notification.error {
            background-color: #fee2e2;
            border: 2px solid #fca5a5;
            color: #991b1b;
        }

        .notification.info {
            background-color: #dbeafe;
            border: 2px solid #60a5fa;
            color: #1e3a8a;
        }

        #passwordAuthSection,
        #googleAuthSection {
            display: none;
        }

        .mfa-auth-section {
            margin-top: 1.5rem;
            padding: 1.25rem;
            border: 2px solid #93c5fd;
            border-radius: 8px;
            background: #eff6ff;
        }

        .mfa-auth-section h4 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0 0 0.75rem;
            color: #1e3a8a;
            font-size: 1rem;
        }

        .mfa-auth-section p {
            margin: 0 0 1rem;
            color: #374151;
        }

        .mfa-factor-choices,
        .mfa-auth-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
        }

        .mfa-factor-choices {
            margin-bottom: 1rem;
        }

        .mfa-factor-option {
            justify-content: center;
            font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        .mfa-factor-option[aria-pressed="true"] {
            background: #1d4ed8;
            border-color: #1d4ed8;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .mfa-auth-actions {
            justify-content: flex-end;
        }

        .mfa-auth-actions .btn-primary {
            justify-content: center;
            padding: 16px 24px;
            border-radius: 8px;
        }

        .breadcrumb {
            max-width: 800px;
            margin: 1rem auto;
            padding: 0 1rem;
        }

        .breadcrumb nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb span {
            color: #9ca3af;
        }
