/* ============================================================
   Solutioo Withdrawal Module – Frontend Styles
   ============================================================ */

:root {
    --wdr-primary: #4a3aaa;
    --wdr-primary-dark: #2d1f7a;
    --wdr-primary-light: #6c5ce7;
    --wdr-accent: #6c5ce7;
    --wdr-success: #28a745;
    --wdr-warning: #ffc107;
    --wdr-danger: #dc3545;
    --wdr-info: #17a2b8;
    --wdr-secondary: #6c757d;
    --wdr-light: #f8f9fa;
    --wdr-dark: #343a40;
    --wdr-border: #e8eaed;
    --wdr-radius: 12px;
    --wdr-radius-sm: 8px;
    --wdr-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --wdr-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --wdr-transition: 0.3s ease;
    --wdr-gradient: linear-gradient(135deg, #1a0f3c 0%, #2d1f7a 30%, #4a3aaa 60%, #6c5ce7 100%);
}

/* ---- Magento Messages Override (on withdrawal pages) ---- */
.page-messages .messages .message {
    max-width: 780px !important;
    margin: 16px auto !important;
    border-radius: var(--wdr-radius-sm) !important;
    font-size: 15px !important;
    padding: 16px 22px !important;
    box-shadow: var(--wdr-shadow) !important;
}

/* ---- Hero Section ---- */
.withdrawal-hero {
    background: var(--wdr-gradient);
    color: #fff;
    padding: 60px 24px 70px;
    text-align: center;
    margin: -25px -25px 0 -25px;
    position: relative;
    overflow: hidden;
}
.withdrawal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(108, 92, 231, 0.3) 0%, transparent 60%);
    pointer-events: none;
}
.withdrawal-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}
.withdrawal-hero__title {
    font-size: 32px !important;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    position: relative;
}
.withdrawal-hero__subtitle {
    font-size: 18px !important;
    opacity: 0.8;
    margin: 0 auto 24px;
    max-width: 560px;
    line-height: 1.6;
    position: relative;
}
.withdrawal-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 16px !important;
    font-weight: 600;
    position: relative;
}

/* ---- Container ---- */
.withdrawal-container {
    max-width: 780px;
    margin: -30px auto 0;
    padding: 0 16px 40px;
    position: relative;
    z-index: 2;
}

/* ---- Step Card ---- */
.withdrawal-step-card {
    background: #fff !important;
    border-radius: var(--wdr-radius) !important;
    box-shadow: var(--wdr-shadow-lg) !important;
    margin-bottom: 24px !important;
    overflow: hidden !important;
    border: 1px solid var(--wdr-border) !important;
}
.withdrawal-step-card__header {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 24px 28px !important;
    border-bottom: 1px solid var(--wdr-border) !important;
    background: var(--wdr-light) !important;
}
.withdrawal-step-card__header strong {
    font-size: 20px !important;
    display: block !important;
    margin-bottom: 4px !important;
    color: var(--wdr-dark) !important;
}
.withdrawal-step-card__header p {
    margin: 0 !important;
    font-size: 16px !important;
    color: var(--wdr-secondary) !important;
    line-height: 1.5 !important;
}
.withdrawal-step-card__body {
    padding: 28px !important;
}

/* ---- Step Number ---- */
.withdrawal-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--wdr-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
}

/* ---- Fields ---- */
.withdrawal-fields-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
}
.withdrawal-fields-row--3 {
    grid-template-columns: 1fr 1fr 1fr !important;
}
.withdrawal-field {
    margin-bottom: 16px;
}
.withdrawal-field label {
    display: block;
    font-weight: 600;
    font-size: 16px !important;
    margin-bottom: 6px;
    color: var(--wdr-dark);
}
.withdrawal-field label .required {
    color: var(--wdr-danger);
}
.withdrawal-field-hint {
    display: block;
    margin-top: 4px;
    font-size: 14px !important;
    color: var(--wdr-secondary);
}
.withdrawal-input {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 2px solid var(--wdr-border) !important;
    border-radius: var(--wdr-radius-sm) !important;
    font-size: 16px !important;
    transition: border-color var(--wdr-transition), box-shadow var(--wdr-transition) !important;
    background: #fff !important;
    box-sizing: border-box !important;
    height: auto !important;
}
.withdrawal-input:focus {
    border-color: var(--wdr-accent) !important;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.12) !important;
    outline: none !important;
}
.withdrawal-input[readonly] {
    background: var(--wdr-light);
    color: var(--wdr-secondary);
}
.withdrawal-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.withdrawal-textarea {
    min-height: 100px;
    resize: vertical;
}
.withdrawal-qty-input {
    width: 80px !important;
    text-align: center;
    padding: 8px 10px !important;
}

/* ---- Buttons ---- */
.withdrawal-btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 16px 32px !important;
    background: var(--wdr-accent) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--wdr-radius-sm) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    cursor: pointer !important;
    transition: all var(--wdr-transition) !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}
.withdrawal-btn-primary:hover {
    background: var(--wdr-primary) !important;
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.3) !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
}
.withdrawal-btn-primary:disabled {
    background: #c8c4e0 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}
.withdrawal-btn-full {
    width: 100% !important;
}

/* ---- Section Title ---- */
.withdrawal-section-title {
    font-size: 18px !important;
    font-weight: 700;
    color: var(--wdr-dark);
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--wdr-border);
}
.withdrawal-section-title:first-child {
    margin-top: 0;
}

/* ---- Order Summary Strip ---- */
.withdrawal-order-summary {
    display: flex;
    gap: 0;
    background: var(--wdr-light);
    border-radius: var(--wdr-radius-sm);
    border: 1px solid var(--wdr-border);
    overflow: hidden;
    margin: 16px 0;
}
.withdrawal-order-summary__item {
    flex: 1;
    padding: 14px 18px;
    border-right: 1px solid var(--wdr-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.withdrawal-order-summary__item:last-child {
    border-right: none;
}
.withdrawal-order-summary__item .label {
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wdr-secondary);
    font-weight: 600;
}
.withdrawal-order-summary__item .value {
    font-size: 16px !important;
    font-weight: 700;
    color: var(--wdr-dark);
}

/* ---- Type Selector ---- */
.withdrawal-type-selector {
    display: flex;
    gap: 12px;
    margin: 12px 0 20px;
}
.withdrawal-type-option {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--wdr-border);
    border-radius: var(--wdr-radius-sm);
    cursor: pointer;
    transition: all var(--wdr-transition);
    background: #fff;
}
.withdrawal-type-option:hover {
    border-color: rgba(108, 92, 231, 0.3);
}
.withdrawal-type-option:has(input:checked) {
    border-color: var(--wdr-accent);
    background: rgba(108, 92, 231, 0.04);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.08);
}
.withdrawal-type-option input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--wdr-accent);
}
.withdrawal-type-option__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.withdrawal-type-option__content strong {
    font-size: 16px !important;
    color: var(--wdr-dark);
}
.withdrawal-type-option__content span {
    font-size: 15px !important;
    color: var(--wdr-secondary);
}

/* ---- Items Table ---- */
.withdrawal-items-wrapper {
    border: 1px solid var(--wdr-border);
    border-radius: var(--wdr-radius-sm);
    overflow: hidden;
    margin: 12px 0;
}
.withdrawal-items-table {
    width: 100%;
    border-collapse: collapse;
}
.withdrawal-items-table thead th {
    background: var(--wdr-light);
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--wdr-secondary);
    border-bottom: 2px solid var(--wdr-border);
}
.withdrawal-items-table tbody td {
    padding: 14px 14px;
    border-bottom: 1px solid var(--wdr-border);
    vertical-align: middle;
    font-size: 16px !important;
}
.withdrawal-items-table tbody tr:last-child td { border-bottom: none; }
.withdrawal-items-table tbody tr:hover { background: rgba(108, 92, 231, 0.02); }
.withdrawal-items-table .col-select { width: 40px; text-align: center; }
.withdrawal-items-table .col-qty { text-align: center; }
.withdrawal-items-table .col-price { text-align: right; font-weight: 600; }
.withdrawal-items-table .col-sku { color: var(--wdr-secondary); font-size: 0.95rem; }

/* ---- Legal Notice ---- */
.withdrawal-legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #fff7ed, #fef3e2);
    border: 1px solid #fed7aa;
    border-radius: var(--wdr-radius-sm);
    margin-bottom: 20px;
}
.withdrawal-legal-notice__icon {
    color: #ea8c00;
    flex-shrink: 0;
    margin-top: 2px;
}
.withdrawal-legal-notice p {
    margin: 0;
    font-size: 15px !important;
    line-height: 1.6;
    color: #92400e;
}

/* ---- Confirmation Box ---- */
.withdrawal-confirmation-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 22px;
    background: var(--wdr-light);
    border: 2px solid var(--wdr-border);
    border-radius: var(--wdr-radius-sm);
    margin-bottom: 20px;
    transition: border-color var(--wdr-transition);
}
.withdrawal-confirmation-box:has(input:checked) {
    border-color: var(--wdr-accent);
    background: rgba(108, 92, 231, 0.04);
}
.withdrawal-confirmation-box .withdrawal-checkbox {
    margin-top: 3px;
    accent-color: var(--wdr-accent);
    flex-shrink: 0;
}
.withdrawal-confirmation-box label {
    cursor: pointer;
    font-size: 16px !important;
    line-height: 1.5;
    color: var(--wdr-dark);
}

/* ---- Login Hint ---- */
.withdrawal-login-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: #f0f4ff;
    border: 1px solid #c7d2fe;
    border-radius: var(--wdr-radius-sm);
    margin-top: 20px;
    color: var(--wdr-primary);
    font-size: 16px !important;
}
.withdrawal-login-hint a {
    color: var(--wdr-accent);
    font-weight: 600;
    text-decoration: none;
}
.withdrawal-login-hint a:hover {
    text-decoration: underline;
}

/* ---- Actions ---- */
.withdrawal-actions {
    margin-top: 8px;
    margin-bottom: 4px;
}

/* ---- Messages ---- */
.withdrawal-msg {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--wdr-radius-sm);
    font-size: 15px !important;
    line-height: 1.5;
    margin: 12px 0;
}
.withdrawal-msg__icon {
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
}
.withdrawal-msg p { margin: 4px 0 0; font-size: 14px !important; }
.withdrawal-msg--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.withdrawal-msg--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.withdrawal-msg--warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.withdrawal-msg--info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

.withdrawal-message-area { margin-top: 16px; }

.withdrawal-loading-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    color: var(--wdr-secondary);
    font-size: 15px !important;
}
.withdrawal-spinner-inline {
    width: 24px;
    height: 24px;
    border: 3px solid var(--wdr-border);
    border-top-color: var(--wdr-accent);
    border-radius: 50%;
    animation: wdr-spin 0.7s linear infinite;
}
@keyframes wdr-spin { to { transform: rotate(360deg); } }

/* ---- Withdrawal List ---- */
.withdrawal-list {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: var(--wdr-radius);
    overflow: hidden;
    box-shadow: var(--wdr-shadow);
}
.withdrawal-list thead th {
    background: var(--wdr-light);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--wdr-dark);
    border-bottom: 2px solid var(--wdr-border);
    white-space: nowrap;
}
.withdrawal-list tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--wdr-border);
    vertical-align: middle;
    font-size: 0.95rem;
}
.withdrawal-list tbody tr:last-child td { border-bottom: none; }
.withdrawal-list tbody tr:hover { background: rgba(108, 92, 231, 0.03); }
.withdrawal-list .col-actions a {
    color: var(--wdr-accent);
    font-weight: 600;
    text-decoration: none;
}
.withdrawal-list .col-actions a:hover { color: var(--wdr-primary); text-decoration: underline; }
.withdrawal-list-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--wdr-secondary);
}
.withdrawal-list-empty .empty-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }

/* ---- Status Badge ---- */
.withdrawal-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.4;
    white-space: nowrap;
}
.withdrawal-status-badge--warning { background: #fff3cd; color: #856404; border: 1px solid #ffeaa7; }
.withdrawal-status-badge--info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.withdrawal-status-badge--primary { background: #e8e0ff; color: #4a3aaa; border: 1px solid #d4ccf0; }
.withdrawal-status-badge--success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.withdrawal-status-badge--danger  { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.withdrawal-status-badge--secondary { background: #e2e3e5; color: #383d41; border: 1px solid #d6d8db; }

/* ---- Timeline ---- */
.withdrawal-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
    gap: 0;
}
.withdrawal-timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 160px;
}
.withdrawal-timeline__circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--wdr-border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
    transition: all var(--wdr-transition);
}
.withdrawal-timeline__step--active .withdrawal-timeline__circle {
    background: var(--wdr-accent);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.2);
}
.withdrawal-timeline__step--completed .withdrawal-timeline__circle { background: var(--wdr-success); }
.withdrawal-timeline__step--rejected .withdrawal-timeline__circle { background: var(--wdr-danger); }
.withdrawal-timeline__label {
    margin-top: 8px;
    font-size: 0.78rem;
    text-align: center;
    color: var(--wdr-secondary);
    font-weight: 500;
}
.withdrawal-timeline__step--active .withdrawal-timeline__label { color: var(--wdr-accent); font-weight: 700; }
.withdrawal-timeline__step--completed .withdrawal-timeline__label { color: var(--wdr-success); }
.withdrawal-timeline__line {
    flex: 1;
    height: 3px;
    background: var(--wdr-border);
    position: relative;
    top: -12px;
    margin: 0 -8px;
    z-index: 1;
}
.withdrawal-timeline__line--completed { background: var(--wdr-success); }

/* ---- Card (General) ---- */
.withdrawal-card {
    background: #fff;
    border: 1px solid var(--wdr-border);
    border-radius: var(--wdr-radius);
    box-shadow: var(--wdr-shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.withdrawal-card__header {
    padding: 16px 20px;
    background: var(--wdr-light);
    border-bottom: 1px solid var(--wdr-border);
    font-weight: 600;
    font-size: 1rem;
}
.withdrawal-card__body { padding: 20px; }
.withdrawal-card__row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.withdrawal-card__row:last-child { border-bottom: none; }
.withdrawal-card__label {
    flex: 0 0 200px;
    font-weight: 600;
    color: var(--wdr-secondary);
    font-size: 0.9rem;
}
.withdrawal-card__value { flex: 1; font-size: 0.95rem; }

/* ---- Form (Legacy/Account) ---- */
.withdrawal-form { max-width: 720px; margin: 0 auto; }
.withdrawal-form .fieldset { margin-bottom: 1.5rem; }
.withdrawal-form .field { margin-bottom: 1.25rem; }
.withdrawal-form .field .label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.withdrawal-form .field .control select,
.withdrawal-form .field .control input,
.withdrawal-form .field .control textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--wdr-border);
    border-radius: var(--wdr-radius-sm);
    font-size: 0.95rem;
    transition: border-color var(--wdr-transition), box-shadow var(--wdr-transition);
}
.withdrawal-form .field .control select:focus,
.withdrawal-form .field .control input:focus,
.withdrawal-form .field .control textarea:focus {
    border-color: var(--wdr-accent);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.12);
    outline: none;
}
.withdrawal-form .actions-toolbar { margin-top: 2rem; display: flex; gap: 12px; align-items: center; }
.withdrawal-form .action.primary {
    background: var(--wdr-accent);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: var(--wdr-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--wdr-transition);
}
.withdrawal-form .action.primary:hover { background: var(--wdr-primary); }

/* ---- Success Page ---- */
.withdrawal-success { text-align: center; padding: 3rem 1rem; max-width: 600px; margin: 0 auto; }
.withdrawal-success__icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--wdr-success);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: wdr-success-pop 0.5s ease;
}
@keyframes wdr-success-pop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
.withdrawal-success__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--wdr-dark); }
.withdrawal-success__message { font-size: 1rem; color: var(--wdr-secondary); margin-bottom: 2rem; line-height: 1.6; }
.withdrawal-success__actions .action {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--wdr-radius-sm);
    font-weight: 600;
    text-decoration: none;
}
.withdrawal-success__actions .action.primary { background: var(--wdr-accent); color: #fff; }
.withdrawal-success__actions .action.primary:hover { background: var(--wdr-primary); }

/* ---- Progress / Step Indicator ---- */
.withdrawal-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 1.25rem 0;
    margin-bottom: 2rem;
}
.withdrawal-progress__step { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--wdr-secondary); }
.withdrawal-progress__step--active { color: var(--wdr-accent); font-weight: 700; }
.withdrawal-progress__step--completed { color: var(--wdr-success); }
.withdrawal-progress__number {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid var(--wdr-border);
    color: var(--wdr-secondary);
}
.withdrawal-progress__step--active .withdrawal-progress__number { border-color: var(--wdr-accent); background: var(--wdr-accent); color: #fff; }
.withdrawal-progress__step--completed .withdrawal-progress__number { border-color: var(--wdr-success); background: var(--wdr-success); color: #fff; }
.withdrawal-progress__divider { width: 40px; height: 2px; background: var(--wdr-border); }
.withdrawal-progress__divider--completed { background: var(--wdr-success); }

/* ---- Deadline Indicators ---- */
.withdrawal-deadline-ok {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: #d4edda; color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: var(--wdr-radius-sm);
    font-size: 0.9rem; font-weight: 600;
}
.withdrawal-deadline-warning {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: #fff3cd; color: #856404;
    border: 1px solid #ffeaa7;
    border-radius: var(--wdr-radius-sm);
    font-size: 0.9rem; font-weight: 600;
}
.withdrawal-deadline-expired {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: #f8d7da; color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: var(--wdr-radius-sm);
    font-size: 0.9rem; font-weight: 600;
}

/* ---- Footer Link Button ---- */
.withdrawal-footer-btn {
    display: inline-block;
    padding: 10px 24px;
    border: none;
    border-radius: var(--wdr-radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--wdr-transition);
    margin-top: 12px;
}
.withdrawal-footer-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
}

/* ---- Order Found Card ---- */
.withdrawal-found-card {
    background: #fff !important;
    border-radius: var(--wdr-radius) !important;
    box-shadow: var(--wdr-shadow-lg) !important;
    overflow: hidden !important;
    border: 1px solid var(--wdr-border) !important;
    margin-bottom: 24px !important;
}
.withdrawal-found-card__header {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 22px 28px !important;
    background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%) !important;
    border-bottom: 2px solid #a8d5b5 !important;
}
.withdrawal-found-card__icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 50% !important;
    background: #28a745 !important;
    color: #fff !important;
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3) !important;
}
.withdrawal-found-card__title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #155724 !important;
    margin: 0 !important;
}
.withdrawal-found-card__body {
    padding: 28px !important;
}
.withdrawal-found-card__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
}
.withdrawal-found-card__item {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid #f0f2f5 !important;
    border-right: 1px solid #f0f2f5 !important;
}
.withdrawal-found-card__item:nth-child(2n) {
    border-right: none !important;
}
.withdrawal-found-card__item:nth-last-child(-n+2) {
    border-bottom: none !important;
}
.withdrawal-found-card__item:last-child:nth-child(odd) {
    grid-column: 1 / -1 !important;
    border-right: none !important;
}
.withdrawal-found-card__label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--wdr-secondary) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}
.withdrawal-found-card__value {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--wdr-dark) !important;
}
.withdrawal-found-card__value--highlight {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--wdr-primary) !important;
}
.withdrawal-found-card__footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 20px 28px 24px !important;
    border-top: 1px solid var(--wdr-border) !important;
    background: var(--wdr-light) !important;
}
.withdrawal-found-card__back-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 10px 20px !important;
    background: transparent !important;
    border: 2px solid var(--wdr-border) !important;
    border-radius: var(--wdr-radius-sm) !important;
    color: var(--wdr-secondary) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all var(--wdr-transition) !important;
}
.withdrawal-found-card__back-btn:hover {
    border-color: var(--wdr-accent) !important;
    color: var(--wdr-accent) !important;
    background: rgba(108, 92, 231, 0.04) !important;
}

/* ---- Found Card Deadline Info ---- */
.withdrawal-found-deadline {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 18px 22px !important;
    border-radius: var(--wdr-radius-sm) !important;
    margin: 0 28px 0 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}
.withdrawal-found-deadline strong {
    display: block !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}
.withdrawal-found-deadline span {
    display: block !important;
    font-size: 15px !important;
}
.withdrawal-found-deadline svg {
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}
.withdrawal-found-deadline--ok {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    color: #166534 !important;
}
.withdrawal-found-deadline--ok svg {
    color: #28a745 !important;
}
.withdrawal-found-deadline--warning {
    background: #fffbeb !important;
    border: 1px solid #fde68a !important;
    color: #92400e !important;
}
.withdrawal-found-deadline--warning svg {
    color: #d97706 !important;
}
.withdrawal-found-deadline--expired {
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    color: #991b1b !important;
}
.withdrawal-found-deadline--expired svg {
    color: #dc3545 !important;
}
.withdrawal-btn-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* ---- Review Page: Progress Bar ---- */
.withdrawal-review-progress {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 32px 0 12px !important;
    margin-bottom: 32px !important;
}
.withdrawal-review-progress__step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 100px !important;
}
.withdrawal-review-progress__step span {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--wdr-secondary) !important;
}
.withdrawal-review-progress__circle {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border: 3px solid var(--wdr-border) !important;
    color: var(--wdr-secondary) !important;
    background: #fff !important;
    transition: all var(--wdr-transition) !important;
}
.withdrawal-review-progress__step--completed .withdrawal-review-progress__circle {
    background: var(--wdr-success) !important;
    border-color: var(--wdr-success) !important;
    color: #fff !important;
}
.withdrawal-review-progress__step--completed span {
    color: var(--wdr-success) !important;
}
.withdrawal-review-progress__step--active .withdrawal-review-progress__circle {
    background: var(--wdr-accent) !important;
    border-color: var(--wdr-accent) !important;
    color: #fff !important;
    box-shadow: 0 0 0 5px rgba(108, 92, 231, 0.15) !important;
}
.withdrawal-review-progress__step--active span {
    color: var(--wdr-accent) !important;
    font-weight: 700 !important;
}
.withdrawal-review-progress__line {
    flex: 1 !important;
    height: 3px !important;
    background: var(--wdr-border) !important;
    max-width: 120px !important;
    margin: -24px 0 0 0 !important;
}
.withdrawal-review-progress__line--completed {
    background: var(--wdr-success) !important;
}

/* ---- Review Page: Summary Grid ---- */
.withdrawal-review-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
}
.withdrawal-review-grid__item {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 18px 22px !important;
    border-bottom: 1px solid #f0f2f5 !important;
    border-right: 1px solid #f0f2f5 !important;
}
.withdrawal-review-grid__item:nth-child(2n) {
    border-right: none !important;
}
.withdrawal-review-grid__item:last-child {
    border-bottom: none !important;
}
.withdrawal-review-grid__item--full {
    grid-column: 1 / -1 !important;
    border-right: none !important;
}
.withdrawal-review-grid__label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--wdr-secondary) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}
.withdrawal-review-grid__value {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--wdr-dark) !important;
    word-break: break-word !important;
}
.withdrawal-review-grid__value--detail {
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #555 !important;
}

/* ---- Review Page: Badges ---- */
.withdrawal-review-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 5px 14px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
}
.withdrawal-review-badge--primary {
    background: #e8e0ff !important;
    color: var(--wdr-primary) !important;
    border: 1px solid #d4ccf0 !important;
}
.withdrawal-review-badge--warning {
    background: #fff3cd !important;
    color: #856404 !important;
    border: 1px solid #ffeaa7 !important;
}

/* ---- Review Page: Quantity Badge ---- */
.withdrawal-review-qty {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 36px !important;
    padding: 4px 10px !important;
    background: var(--wdr-light) !important;
    border: 1px solid var(--wdr-border) !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: var(--wdr-dark) !important;
}

/* ---- Review Page: Spacing Overrides ---- */
.withdrawal-container .withdrawal-order-summary {
    margin-bottom: 32px !important;
}
.withdrawal-container .withdrawal-step-card {
    margin-bottom: 32px !important;
}

/* ---- Review Page: Warning Box ---- */
.withdrawal-review-warning {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 22px 24px !important;
    background: linear-gradient(135deg, #fff7ed, #fef3e2) !important;
    border: 1px solid #fed7aa !important;
    border-radius: var(--wdr-radius) !important;
    margin-bottom: 32px !important;
    box-shadow: var(--wdr-shadow) !important;
}
.withdrawal-review-warning__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: #f59e0b !important;
    color: #fff !important;
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.3) !important;
}
.withdrawal-review-warning__icon svg {
    width: 22px !important;
    height: 22px !important;
}
.withdrawal-review-warning__content strong {
    display: block !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #92400e !important;
    margin-bottom: 6px !important;
}
.withdrawal-review-warning__content p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #b45309 !important;
}

/* ---- Review Page: Actions ---- */
.withdrawal-review-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-bottom: 32px !important;
}
.withdrawal-review-actions form {
    width: 100% !important;
}
.withdrawal-review-submit-btn {
    font-size: 18px !important;
    padding: 18px 32px !important;
    gap: 10px !important;
}
.withdrawal-review-back-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 14px 24px !important;
    background: transparent !important;
    border: 2px solid var(--wdr-border) !important;
    border-radius: var(--wdr-radius-sm) !important;
    color: var(--wdr-secondary) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all var(--wdr-transition) !important;
    text-decoration: none !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.withdrawal-review-back-btn:hover {
    border-color: var(--wdr-accent) !important;
    color: var(--wdr-accent) !important;
    background: rgba(108, 92, 231, 0.04) !important;
    text-decoration: none !important;
}

/* ---- Review Page: Legal Footer ---- */
.withdrawal-review-legal-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 16px 20px !important;
    background: var(--wdr-light) !important;
    border: 1px solid var(--wdr-border) !important;
    border-radius: var(--wdr-radius-sm) !important;
    color: var(--wdr-secondary) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: center !important;
}
.withdrawal-review-legal-footer svg {
    flex-shrink: 0 !important;
    color: var(--wdr-success) !important;
}

/* ---- Success Page: Card ---- */
.withdrawal-success-card {
    text-align: center !important;
    padding: 48px 28px 32px !important;
    background: #fff !important;
    border-radius: var(--wdr-radius) !important;
    box-shadow: var(--wdr-shadow-lg) !important;
    border: 1px solid var(--wdr-border) !important;
    margin-bottom: 32px !important;
}
.withdrawal-success-card__icon-area {
    margin-bottom: 24px !important;
}
.withdrawal-success-card__icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 88px !important;
    height: 88px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(40, 167, 69, 0.35) !important;
    animation: wdr-success-pop 0.6s ease !important;
}
.withdrawal-success-card__title {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--wdr-dark) !important;
    margin: 0 0 12px !important;
}
.withdrawal-success-card__text {
    font-size: 17px !important;
    color: var(--wdr-secondary) !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* ---- Success Page: Email Notification ---- */
.withdrawal-success-email {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 22px 24px !important;
    background: linear-gradient(135deg, #e8f5e9, #f0fdf4) !important;
    border: 1px solid #a8d5b5 !important;
    border-radius: var(--wdr-radius) !important;
    margin-bottom: 32px !important;
    box-shadow: var(--wdr-shadow) !important;
}
.withdrawal-success-email__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: #28a745 !important;
    color: #fff !important;
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3) !important;
}
.withdrawal-success-email__icon svg {
    width: 22px !important;
    height: 22px !important;
}
.withdrawal-success-email__content strong {
    display: block !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #155724 !important;
    margin-bottom: 6px !important;
}
.withdrawal-success-email__content p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #1b5e20 !important;
}

/* ---- Success Page: Next Steps ---- */
.withdrawal-success-nextsteps {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 22px 24px !important;
    background: #eff6ff !important;
    border: 1px solid #bfdbfe !important;
    border-radius: var(--wdr-radius) !important;
    margin-bottom: 32px !important;
    box-shadow: var(--wdr-shadow) !important;
}
.withdrawal-success-nextsteps__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: #3b82f6 !important;
    color: #fff !important;
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.3) !important;
}
.withdrawal-success-nextsteps__icon svg {
    width: 22px !important;
    height: 22px !important;
}
.withdrawal-success-nextsteps__content strong {
    display: block !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #1e40af !important;
    margin-bottom: 6px !important;
}
.withdrawal-success-nextsteps__content p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #1e3a8a !important;
}

/* ---- Success Page: Progress - Success Step ---- */
.withdrawal-review-progress__step--success .withdrawal-review-progress__circle {
    background: var(--wdr-success) !important;
    border-color: var(--wdr-success) !important;
    color: #fff !important;
    box-shadow: 0 0 0 5px rgba(40, 167, 69, 0.15) !important;
}
.withdrawal-review-progress__step--success span {
    color: var(--wdr-success) !important;
    font-weight: 700 !important;
}

/* ---- Checkbox ---- */
.withdrawal-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--wdr-accent);
    cursor: pointer;
}

/* ---- Responsive ---- */
@media screen and (max-width: 768px) {
    .withdrawal-hero {
        padding: 40px 16px 36px;
        margin: -16px -16px 0 -16px;
    }
    .withdrawal-hero__title { font-size: 1.5rem; }
    .withdrawal-hero__subtitle { font-size: 0.95rem; }
    .withdrawal-container { margin-top: -20px; padding: 0 8px 30px; }
    .withdrawal-step-card__header { padding: 18px 20px; }
    .withdrawal-step-card__body { padding: 20px; }
    .withdrawal-fields-row,
    .withdrawal-fields-row--3 { grid-template-columns: 1fr; }
    .withdrawal-type-selector { flex-direction: column; }
    .withdrawal-order-summary { flex-direction: column; }
    .withdrawal-order-summary__item { border-right: none; border-bottom: 1px solid var(--wdr-border); }
    .withdrawal-order-summary__item:last-child { border-bottom: none; }
    .withdrawal-found-card__grid { grid-template-columns: 1fr !important; }
    .withdrawal-found-card__item { border-right: none !important; }
    .withdrawal-found-card__item:last-child:nth-child(odd) { grid-column: auto !important; }
    .withdrawal-review-grid { grid-template-columns: 1fr !important; }
    .withdrawal-review-grid__item { border-right: none !important; }
    .withdrawal-review-grid__item--full { grid-column: auto !important; }
    .withdrawal-review-progress__step { min-width: 70px !important; }
    .withdrawal-review-progress__step span { font-size: 12px !important; }
    .withdrawal-review-progress__circle { width: 34px !important; height: 34px !important; font-size: 14px !important; }
    .withdrawal-review-progress__line { max-width: 60px !important; }
    .withdrawal-list { display: block; overflow-x: auto; }
    .withdrawal-card__row { flex-direction: column; }
    .withdrawal-card__label { flex: none; margin-bottom: 2px; }
    .withdrawal-timeline { flex-direction: column; gap: 0; align-items: flex-start; padding-left: 1rem; }
    .withdrawal-timeline__line { width: 3px; height: 24px; margin: 0; top: 0; margin-left: 16px; }
    .withdrawal-timeline__step { flex-direction: row; gap: 12px; max-width: none; }
    .withdrawal-timeline__label { margin-top: 0; }
}

@media screen and (max-width: 480px) {
    .withdrawal-hero__title { font-size: 1.3rem; }
    .withdrawal-hero__badge { font-size: 0.75rem; padding: 6px 14px; }
    .withdrawal-list thead { display: none; }
    .withdrawal-list tbody tr { display: block; margin-bottom: 1rem; border: 1px solid var(--wdr-border); border-radius: var(--wdr-radius-sm); }
    .withdrawal-list tbody td { display: flex; justify-content: space-between; padding: 8px 12px; font-size: 0.9rem; }
    .withdrawal-list tbody td::before { content: attr(data-label); font-weight: 600; color: var(--wdr-secondary); margin-right: 8px; }
}

/* ---- Existing Withdrawal Card ---- */
.withdrawal-existing-card {
    background: #fff !important;
    border-radius: var(--wdr-radius) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.08) !important;
    overflow: hidden !important;
    border: 1px solid var(--wdr-border) !important;
    max-width: 640px !important;
    margin: 0 auto !important;
}
.withdrawal-existing-card__header {
    background: linear-gradient(135deg, #fef2f2, #fee2e2) !important;
    border-bottom: 2px solid #fca5a5 !important;
    padding: 28px 32px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}
.withdrawal-existing-card__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    flex-shrink: 0 !important;
}
.withdrawal-existing-card__icon svg {
    stroke: #fff !important;
}
.withdrawal-existing-card__title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #991b1b !important;
    margin: 0 !important;
    padding: 0 !important;
}
.withdrawal-existing-card__body {
    padding: 28px 32px !important;
}
.withdrawal-existing-card__text {
    font-size: 16px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin: 0 0 24px 0 !important;
}
.withdrawal-existing-card__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    border: 1px solid var(--wdr-border) !important;
    border-radius: var(--wdr-radius-sm) !important;
    overflow: hidden !important;
}
.withdrawal-existing-card__item {
    padding: 16px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    background: #fafbfc !important;
    border-bottom: 1px solid var(--wdr-border) !important;
}
.withdrawal-existing-card__item:nth-child(odd) {
    border-right: 1px solid var(--wdr-border) !important;
}
.withdrawal-existing-card__item:nth-last-child(-n+2) {
    border-bottom: none !important;
}
.withdrawal-existing-card__label {
    font-size: 13px !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
.withdrawal-existing-card__value {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--wdr-secondary) !important;
}
.withdrawal-existing-card__value--highlight {
    color: var(--wdr-primary) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}
.withdrawal-existing-card__footer {
    padding: 24px 32px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    border-top: 1px solid var(--wdr-border) !important;
    background: #fafbfc !important;
}
.withdrawal-existing-card__footer .withdrawal-btn-primary {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}

/* Status badges for existing withdrawal */
.withdrawal-existing-status-badge {
    display: inline-block !important;
    padding: 4px 14px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
}
.withdrawal-existing-status-badge--pending {
    background: #fef3c7 !important;
    color: #92400e !important;
}
.withdrawal-existing-status-badge--processing {
    background: #dbeafe !important;
    color: #1e40af !important;
}
.withdrawal-existing-status-badge--approved {
    background: #d1fae5 !important;
    color: #065f46 !important;
}
.withdrawal-existing-status-badge--rejected {
    background: #fee2e2 !important;
    color: #991b1b !important;
}
.withdrawal-existing-status-badge--completed {
    background: #d1fae5 !important;
    color: #065f46 !important;
}

@media screen and (max-width: 600px) {
    .withdrawal-existing-card__header { padding: 20px 20px !important; }
    .withdrawal-existing-card__body { padding: 20px 20px !important; }
    .withdrawal-existing-card__footer { padding: 20px 20px !important; }
    .withdrawal-existing-card__grid { grid-template-columns: 1fr !important; }
    .withdrawal-existing-card__item:nth-child(odd) { border-right: none !important; }
    .withdrawal-existing-card__title { font-size: 18px !important; }
}

/* ---- Print ---- */
@media print {
    .withdrawal-hero,
    .withdrawal-actions,
    .withdrawal-footer-btn,
    .withdrawal-progress,
    .withdrawal-login-hint,
    .withdrawal-legal-notice,
    .withdrawal-confirmation-box,
    .page-header,
    .page-footer,
    .sidebar,
    .nav-sections,
    .breadcrumbs { display: none !important; }
    .withdrawal-step-card,
    .withdrawal-card { box-shadow: none; border: 1px solid #ccc; page-break-inside: avoid; }
    body { font-size: 12pt; }
}
