/* /Components/Layout/AuthLayout.razor.rz.scp.css */
/* Auth Layout - Full page authentication screens with blueprint background */
/* Complete isolation from app.css - auth pages have their own styling */

/* Reset and override app.css styles for auth pages */
:root[b-6qdxgvfnbd] {
    --auth-bg-start: #1a2744;
    --auth-bg-end: #0f1829;
}

/* Override body background when auth layout is active */
.auth-container[b-6qdxgvfnbd] {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    /* Background image directly on container */
    background-image: url('https://res.cloudinary.com/incometec/image/upload/v1768425428/App/background_bph5sz.png');
    background-size: cover;
    background-position: center;
    font-family: 'Heebo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Reset any inherited body styles */
.auth-container *[b-6qdxgvfnbd] {
    box-sizing: border-box;
}

/* Reset form validation styles from app.css */
.auth-container .valid.modified:not([type=checkbox])[b-6qdxgvfnbd] {
    outline: none;
    border-color: inherit;
}

.auth-container .invalid[b-6qdxgvfnbd] {
    outline: none;
    border-color: #ef4444 !important;
}

/* Auth-specific input styles */
.auth-container input[b-6qdxgvfnbd],
.auth-container textarea[b-6qdxgvfnbd],
.auth-container select[b-6qdxgvfnbd] {
    font-family: 'Heebo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.auth-container input[b-6qdxgvfnbd]::placeholder,
.auth-container textarea[b-6qdxgvfnbd]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.auth-background[b-6qdxgvfnbd] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://res.cloudinary.com/incometec/image/upload/v1768425429/App/overlay_ir7tul.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Blueprint Pattern Overlay - More visible */
.blueprint-overlay[b-6qdxgvfnbd] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        /* Grid lines - more visible */
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        /* Diagonal lines */
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, rgba(255, 255, 255, 0.08) 51%, transparent 52%);
    background-size:
        50px 50px,
        50px 50px,
        30px 30px;
}

/* Circle decorations */
.blueprint-overlay[b-6qdxgvfnbd]::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: transparent;
}

.blueprint-overlay[b-6qdxgvfnbd]::after {
    content: "";
    position: absolute;
    bottom: 25%;
    right: 15%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: transparent;
}

.auth-content[b-6qdxgvfnbd] {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    width: 100%;
}

/* RTL Support */
.auth-container[dir="rtl"][b-6qdxgvfnbd] {
    text-align: right;
}

.auth-container[dir="ltr"][b-6qdxgvfnbd] {
    text-align: left;
}

/* Responsive adjustments */
@media (max-height: 700px) {
    .auth-content[b-6qdxgvfnbd] {
        justify-content: flex-start;
        padding-top: 20px;
    }
}

@media (min-width: 768px) {
    .auth-container[b-6qdxgvfnbd] {
        top: 10%;
        bottom: auto;
        border-radius: 33px;
        min-height: 52dvh;
        overflow: hidden;
    }

    .auth-background[b-6qdxgvfnbd] {
        border-radius: 33px;
    }

    .auth-content[b-6qdxgvfnbd] {
        padding: 60px 40px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Styles - Dark Theme matching the UI design */

.app-container[b-jk2nlsbo0d] {
    height: 100vh;
    background: linear-gradient(to top, #0B1C35 0%, rgba(11, 28, 53, 0.25) 100%);
    background-image: url('https://res.cloudinary.com/incometec/image/upload/v1768425429/App/overlay_ir7tul.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

/* RTL Support */
.app-container[dir="rtl"][b-jk2nlsbo0d] {
    text-align: right;
}

.app-container[dir="ltr"][b-jk2nlsbo0d] {
    text-align: left;
}

/* Page Card Container */
.page-card[b-jk2nlsbo0d] {
    background: #1A3A6B;
    border-radius: 24px 24px 0 0;
    flex: 1;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

/* Header */
.app-header[b-jk2nlsbo0d] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: transparent;
}

.header-logo-btn[b-jk2nlsbo0d] {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logo-image[b-jk2nlsbo0d] {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.header-title[b-jk2nlsbo0d] {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
    color: #ffffff;
}

.header-back-btn[b-jk2nlsbo0d] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.header-back-btn:hover[b-jk2nlsbo0d] {
    background: rgba(255, 255, 255, 0.15);
}

.back-arrow-icon[b-jk2nlsbo0d] {
    width: 24px;
    height: 24px;
    transform: rotate(180deg);
}

.header-menu-btn[b-jk2nlsbo0d] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.header-menu-btn:hover[b-jk2nlsbo0d] {
    background: rgba(255, 255, 255, 0.15);
}

.header-menu-btn svg[b-jk2nlsbo0d] {
    stroke: #ffffff;
}

/* Menu Overlay */
.menu-overlay[b-jk2nlsbo0d] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

/* Side Menu */
.side-menu[b-jk2nlsbo0d] {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 280px;
    background: linear-gradient(180deg, #1e3a5f 0%, #152238 100%);
    z-index: 101;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.side-menu.rtl[b-jk2nlsbo0d] {
    right: 0;
    border-radius: 20px 0 0 20px;
}

.side-menu.ltr[b-jk2nlsbo0d] {
    left: 0;
    border-radius: 0 20px 20px 0;
}

.menu-header[b-jk2nlsbo0d] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-title[b-jk2nlsbo0d] {
    font-size: 20px;
    font-weight: bold;
}

.menu-close[b-jk2nlsbo0d] {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.menu-items[b-jk2nlsbo0d] {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.menu-items li[b-jk2nlsbo0d] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-items a[b-jk2nlsbo0d] {
    display: block;
    padding: 16px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s;
}

.menu-items a:hover[b-jk2nlsbo0d] {
    background: rgba(255, 255, 255, 0.1);
}

.menu-footer[b-jk2nlsbo0d] {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Language Switcher */
.language-switcher[b-jk2nlsbo0d] {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.lang-btn[b-jk2nlsbo0d] {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn:hover[b-jk2nlsbo0d] {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active[b-jk2nlsbo0d] {
    background: #3b82f6;
    border-color: #3b82f6;
}

.logout-btn[b-jk2nlsbo0d] {
    width: 100%;
    padding: 12px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.logout-btn:hover[b-jk2nlsbo0d] {
    background: rgba(239, 68, 68, 0.3);
}

/* Main Content */
.app-main[b-jk2nlsbo0d] {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
/* /Components/Layout/Menu.razor.rz.scp.css */
/* Menu Overlay */
.menu-overlay[b-fzlilr0s56] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    animation: fadeIn-b-fzlilr0s56 0.2s ease-out;
}

@keyframes fadeIn-b-fzlilr0s56 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Menu Container */
.menu-container[b-fzlilr0s56] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
    height: 90vh;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    overflow: hidden;
    animation: slideUp-b-fzlilr0s56 0.3s ease-out;
}

@keyframes slideUp-b-fzlilr0s56 {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Menu Sidebar */
.menu-sidebar[b-fzlilr0s56] {
    background: linear-gradient(180deg, #2C4168 0%, #1E2D47 100%);
    width: 100px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 12px;
}

.menu-logo[b-fzlilr0s56] {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

.menu-timestamps[b-fzlilr0s56] {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: auto;
    margin-bottom: 40px;
}

.menu-time[b-fzlilr0s56] {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.4;
}

/* Menu Content */
.menu-content[b-fzlilr0s56] {
    flex: 1;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
}

/* Close Button */
.menu-close-btn[b-fzlilr0s56] {
    position: absolute;
    top: 20px;
    background: none;
    border: none;
    color: #C7D2E0;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    z-index: 1;
}

.menu-container.rtl .menu-close-btn[b-fzlilr0s56] {
    left: 20px;
}

.menu-container.ltr .menu-close-btn[b-fzlilr0s56] {
    right: 20px;
}

.menu-close-btn:hover[b-fzlilr0s56] {
    color: #9CA3AF;
}

/* Menu Items */
.menu-items[b-fzlilr0s56] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 48px;
}

/* Menu Item Buttons */
.menu-item[b-fzlilr0s56] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    color: #2C4168;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 12px;
    width: 100%;
}

.menu-item:hover[b-fzlilr0s56] {
    background-color: #F3F4F6;
}

.menu-item.active[b-fzlilr0s56] {
    color: #10B981;
    font-weight: 600;
}

.menu-item-label[b-fzlilr0s56] {
    flex: 1;
}

.menu-container.rtl .menu-item-label[b-fzlilr0s56] {
    text-align: right;
}

.menu-container.ltr .menu-item-label[b-fzlilr0s56] {
    text-align: left;
}

/* Menu Item Icons */
.menu-item-icon[b-fzlilr0s56] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

/* SVG icons */
.menu-item-icon[stroke][b-fzlilr0s56] {
    stroke: currentColor;
}

/* Image icons */
.menu-item-icon[src][b-fzlilr0s56] {
    object-fit: contain;
}

.menu-item.active .menu-item-icon[b-fzlilr0s56] {
    opacity: 1;
}

/* Green filter for active state with image icons */
.menu-item.active .menu-item-icon[src][b-fzlilr0s56] {
    filter: brightness(0) saturate(100%) invert(60%) sepia(73%) saturate(437%) hue-rotate(100deg) brightness(95%) contrast(86%);
}

/* Icon Group (for badge + icon) */
.menu-item-icon-group[b-fzlilr0s56] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-item-badge[b-fzlilr0s56] {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Menu Footer */
.menu-footer[b-fzlilr0s56] {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Logout Button */
.menu-logout-btn[b-fzlilr0s56] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    color: #F43F5E;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 12px;
    width: 100%;
}

.menu-logout-btn:hover[b-fzlilr0s56] {
    background-color: #FEE2E2;
}

.menu-logout-label[b-fzlilr0s56] {
    flex: 1;
}

.menu-container.rtl .menu-logout-label[b-fzlilr0s56] {
    text-align: right;
}

.menu-container.ltr .menu-logout-label[b-fzlilr0s56] {
    text-align: left;
}

.menu-logout-icon[b-fzlilr0s56] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.9;
}

/* SVG logout icon */
.menu-logout-icon[stroke][b-fzlilr0s56] {
    stroke: currentColor;
}

/* Image logout icon */
.menu-logout-icon[src][b-fzlilr0s56] {
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(44%) sepia(84%) saturate(2427%) hue-rotate(334deg) brightness(97%) contrast(94%);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .menu-container[b-fzlilr0s56] {
        width: 95%;
        max-width: none;
        height: 85vh;
    }

    .menu-sidebar[b-fzlilr0s56] {
        width: 70px;
        padding: 24px 8px;
    }

    .menu-logo[b-fzlilr0s56] {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .menu-timestamps[b-fzlilr0s56] {
        gap: 24px;
    }

    .menu-time[b-fzlilr0s56] {
        font-size: 12px;
    }

    .menu-content[b-fzlilr0s56] {
        padding: 28px 20px;
    }

    .menu-items[b-fzlilr0s56] {
        margin-top: 36px;
    }

    .menu-item[b-fzlilr0s56] {
        font-size: 15px;
        padding: 16px 20px;
    }

    .menu-item-icon[b-fzlilr0s56], .menu-logout-icon[b-fzlilr0s56] {
        width: 20px;
        height: 20px;
    }

    .menu-logout-btn[b-fzlilr0s56] {
        font-size: 15px;
        padding: 16px 20px;
    }
}
/* /Pages/Addresses/AddEdit.razor.rz.scp.css */
.add-edit-page[b-w1dbaylcwj] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay[b-w1dbaylcwj] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.modal[b-w1dbaylcwj] {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 20px;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 20;
    animation: slideUp-b-w1dbaylcwj 0.3s ease-out;
}

@keyframes slideUp-b-w1dbaylcwj {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.modal-handle[b-w1dbaylcwj] {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.modal-title[b-w1dbaylcwj] {
    font-size: 20px;
    font-weight: 700;
    color: #2B3E5F;
    text-align: center;
    margin-bottom: 20px;
}

.enable-map-container[b-w1dbaylcwj] {
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.enable-map-btn[b-w1dbaylcwj] {
    background: #2B3E5F;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(43, 62, 95, 0.2);
}

.enable-map-btn:hover[b-w1dbaylcwj] {
    background: #1e2f4a;
}

.enable-map-btn svg[b-w1dbaylcwj] {
    flex-shrink: 0;
}

.map-preview[b-w1dbaylcwj] {
    width: 100%;
    height: 24vh;
    background: #e5e7eb;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    cursor: crosshair;
    transition: all 0.3s ease;
}

.map-preview img[b-w1dbaylcwj] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-preview:hover .map-expand-button[b-w1dbaylcwj] {
    opacity: 1;
}

.map-expand-button[b-w1dbaylcwj] {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.2s, background 0.2s;
    cursor: pointer;
    padding: 0;
}

.map-expand-button svg[b-w1dbaylcwj] {
    color: #2B3E5F;
    transition: color 0.2s;
}

.map-expand-button:hover[b-w1dbaylcwj] {
    opacity: 1 !important;
    transform: scale(1.1);
    background: #f0f0f0;
}

.map-expand-button:hover svg[b-w1dbaylcwj] {
    color: #1e2f4a;
}

.map-expand-button:active[b-w1dbaylcwj] {
    transform: scale(1.05);
}

.map-preview.map-expanded[b-w1dbaylcwj] {
    height: 60vh;
}

.map-fullscreen[b-w1dbaylcwj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
    margin: 0;
    animation: expandMap-b-w1dbaylcwj 0.3s ease-out;
}

@keyframes expandMap-b-w1dbaylcwj {
    from {
        transform: scale(0.8);
        opacity: 0.5;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#interactive-map[b-w1dbaylcwj] {
    width: 100%;
    height: 100%;
    cursor: crosshair;
}

.map-loader[b-w1dbaylcwj] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.loader-spinner[b-w1dbaylcwj] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-w1dbaylcwj 0.8s linear infinite;
}

@keyframes spin-b-w1dbaylcwj {
    to {
        transform: rotate(360deg);
    }
}

.permission-overlay[b-w1dbaylcwj] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.permission-btn[b-w1dbaylcwj] {
    background: #2B3E5F;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.permission-btn:hover[b-w1dbaylcwj] {
    background: #1e2f4a;
}

.form-group[b-w1dbaylcwj] {
    margin-bottom: 16px;
}

.form-group.required input[b-w1dbaylcwj]::placeholder,
.form-group.required .street-search-input[b-w1dbaylcwj]::placeholder,
.form-group.required .dropdown option[disabled][b-w1dbaylcwj] {
    color: #666;
    font-weight: 500;
}

.form-group.required input[b-w1dbaylcwj],
.form-group.required .street-search-input[b-w1dbaylcwj],
.form-group.required .dropdown[b-w1dbaylcwj] {
    border: 1px solid #d1d5db;
}

.form-group.required input:invalid:not(:placeholder-shown)[b-w1dbaylcwj],
.form-group.required .dropdown:invalid[b-w1dbaylcwj] {
    border-color: #ef4444;
}

.dropdown[b-w1dbaylcwj] {
    width: 100%;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    color: #2B3E5F;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232B3E5F' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 48px;
}

input[b-w1dbaylcwj], textarea[b-w1dbaylcwj] {
    width: 100%;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    color: #2B3E5F;
    font-family: inherit;
}

input[b-w1dbaylcwj]::placeholder, textarea[b-w1dbaylcwj]::placeholder {
    color: #b8c1cc;
    font-style: italic;
}

input[type="tel"][b-w1dbaylcwj]::placeholder {
    text-align: right;
}

.street-search-container[b-w1dbaylcwj] {
    position: relative;
}

.street-search-input[b-w1dbaylcwj] {
    width: 100%;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    color: #2B3E5F;
    font-family: inherit;
}

.street-search-input[b-w1dbaylcwj]::placeholder {
    color: #b8c1cc;
    font-style: italic;
}

.street-dropdown[b-w1dbaylcwj] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    animation: dropdownSlide-b-w1dbaylcwj 0.2s ease-out;
}

@keyframes dropdownSlide-b-w1dbaylcwj {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.street-option[b-w1dbaylcwj] {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    color: #2B3E5F;
    font-size: 15px;
    text-align: right;
}

.street-option:hover[b-w1dbaylcwj] {
    background: #f0f2f5;
}

.street-option:active[b-w1dbaylcwj] {
    background: #e5e7eb;
}

.street-option-info[b-w1dbaylcwj] {
    padding: 8px 16px;
    color: #666;
    font-size: 13px;
    text-align: center;
    font-style: italic;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

textarea[b-w1dbaylcwj] {
    min-height: 80px;
    resize: vertical;
}

.error-message[b-w1dbaylcwj] {
    background: #fee;
    color: #c33;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.form-footer[b-w1dbaylcwj] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.done-btn[b-w1dbaylcwj] {
    width: 100%;
    background: #9ca3af;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.done-btn:disabled[b-w1dbaylcwj] {
    cursor: not-allowed;
    opacity: 0.6;
}

.done-btn.active:not(:disabled)[b-w1dbaylcwj] {
    background: #10B981;
}

.done-btn.active:not(:disabled):hover[b-w1dbaylcwj] {
    background: #0ea574;
}
/* /Pages/Addresses/Details.razor.rz.scp.css */
/* Details Page - Mobile-first design with desktop responsive */

.details-page[b-tku212spgm] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Map Section - inside dark area */
.map-section[b-tku212spgm] {
    flex-shrink: 0;
    height: 180px;
    background: #1e3a5f;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
    border-radius: 12px;
}

.map-image[b-tku212spgm] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-placeholder[b-tku212spgm] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a5f 25%, #2B3E5F 25%, #2B3E5F 50%, #1e3a5f 50%, #1e3a5f 75%, #2B3E5F 75%, #2B3E5F);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Stats Section - on dark background */
.stats[b-tku212spgm] {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    color: #fff;
}

.stat-item[b-tku212spgm] {
    text-align: center;
}

.stat-value[b-tku212spgm] {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.stat-value.balance[b-tku212spgm] {
    color: #10B981;
}

.stat-label[b-tku212spgm] {
    font-size: 13px;
    opacity: 0.8;
    color: #fff;
}

/* Tabs - on dark background */
.tabs[b-tku212spgm] {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 0 20px 16px;
}

.tab[b-tku212spgm] {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}

.tab:hover[b-tku212spgm] {
    color: rgba(255, 255, 255, 0.8);
}

.tab.active[b-tku212spgm] {
    color: #10B981;
}

.tab.active[b-tku212spgm]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #10B981;
}

/* Content Area - dark background with rounded top, extends to bottom */
.content[b-tku212spgm] {
    flex: 1;
    min-height: 0; /* Important for flex scrolling */
    background: #0B1C35;
    border-radius: 24px 24px 0 0;
    padding: 24px 20px;
    padding-bottom: 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Payment method display */
.payment-info[b-tku212spgm] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method-logo[b-tku212spgm] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.card-display[b-tku212spgm] {
    direction: ltr;
    unicode-bidi: embed;
}

/* Loading & States */
.loading[b-tku212spgm], .empty-state[b-tku212spgm] {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 600;
}

.error-message[b-tku212spgm] {
    text-align: center;
    color: #ef4444;
    padding: 20px;
    font-size: 15px;
}

.retry-btn[b-tku212spgm] {
    display: block;
    margin: 0 auto;
    background: #10B981;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* Detail Rows */
.detail-row[b-tku212spgm] {
    margin-bottom: 20px;
}

.detail-label[b-tku212spgm] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    text-align: right;
}

.detail-value[b-tku212spgm] {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: right;
}

/* Edit Button */
.edit-btn[b-tku212spgm] {
    display: block;
    margin: 32px auto 0;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.edit-btn:hover[b-tku212spgm] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Entries List - matches design image */
.entries-list[b-tku212spgm] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.entry-item[b-tku212spgm] {
    display: flex;
    align-items: center;
    padding: 16px 0;
}

.entry-item:last-child[b-tku212spgm] {
    border-bottom: none;
}

.entry-item.refund[b-tku212spgm] {
    background: rgba(239, 68, 68, 0.1);
}

.entry-date[b-tku212spgm] {
    flex-shrink: 0;
    text-align: left;
    min-width: 100px;
}

.entry-date-main[b-tku212spgm] {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.entry-date-time[b-tku212spgm] {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.entry-info[b-tku212spgm] {
    flex: 1;
    text-align: right;
    padding: 0 12px;
}

.entry-name[b-tku212spgm] {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.entry-address[b-tku212spgm] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.entry-avatar[b-tku212spgm] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

/* List Items (payments) */
.list-item[b-tku212spgm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.list-item.refund[b-tku212spgm] {
    background: rgba(239, 68, 68, 0.1);
}

.item-info[b-tku212spgm] {
    flex: 1;
    text-align: right;
}

.item-name[b-tku212spgm] {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.item-date[b-tku212spgm] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.item-value[b-tku212spgm] {
    font-size: 16px;
    font-weight: 700;
    color: #10B981;
}

.item-value.refund[b-tku212spgm] {
    color: #ef4444;
}

.item-details[b-tku212spgm] {
    text-align: left;
}

.item-status[b-tku212spgm] {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 4px;
}

.item-status.success[b-tku212spgm] {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.item-status.pending[b-tku212spgm] {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.item-status.failed[b-tku212spgm] {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Desktop Responsive - expand to use full width */
@media (min-width: 768px) {
    .map-section[b-tku212spgm] {
        height: 220px;
        margin: 0 20px;
    }

    .stats[b-tku212spgm] {
        gap: 60px;
    }

    .stat-value[b-tku212spgm] {
        font-size: 28px;
    }

    .tabs[b-tku212spgm] {
        gap: 40px;
    }

    .tab[b-tku212spgm] {
        font-size: 16px;
    }

    .content[b-tku212spgm] {
        padding: 30px;
    }

    .detail-row[b-tku212spgm] {
        display: inline-block;
        width: calc(50% - 20px);
        margin-right: 20px;
        vertical-align: top;
    }

    .detail-row:nth-child(2n)[b-tku212spgm] {
        margin-right: 0;
    }

    .detail-row.full-width[b-tku212spgm] {
        width: 100%;
        margin-right: 0;
    }

    .list-item[b-tku212spgm] {
        padding: 16px 20px;
    }
}
/* /Pages/Addresses/Index.razor.rz.scp.css */
.addresses-page[b-sg2hf36f75] {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Header Section - Dark Background */
.header-section[b-sg2hf36f75] {
    flex-shrink: 0;
    padding: 16px 20px;
    background: #1A3A6B;
}

/* Search Bar - Centered with icon inside */
.search-bar[b-sg2hf36f75] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0B1C35BF;
    padding: 12px 16px;
    border-radius: 20px;
    direction: rtl;
}

.search-icon[b-sg2hf36f75] {
    flex-shrink: 0;
}

.search-input[b-sg2hf36f75] {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    outline: none;
    text-align: right;
}

.search-input[b-sg2hf36f75]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.content[b-sg2hf36f75] {
    flex: 1;
    min-height: 0;
    background: #0B1C35;
    border-radius: 24px 24px 0 0;
    padding: 20px;
    padding-bottom: 80px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.loading[b-sg2hf36f75], .no-data[b-sg2hf36f75] {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    animation: fadeIn-b-sg2hf36f75 0.4s ease-in-out;
    font-weight: 600;
}

.city-group[b-sg2hf36f75] {
    margin-bottom: 24px;
    animation: fadeIn-b-sg2hf36f75 0.3s ease-in-out;
}

@keyframes fadeIn-b-sg2hf36f75 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.city-header[b-sg2hf36f75] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 8px;
    flex-direction: row-reverse;
}

.city-name[b-sg2hf36f75] {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.city-count[b-sg2hf36f75] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.address-card[b-sg2hf36f75] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, opacity 0.3s ease-in-out;
    animation: slideIn-b-sg2hf36f75 0.3s ease-out;
}

@keyframes slideIn-b-sg2hf36f75 {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.address-card:nth-child(1)[b-sg2hf36f75] {
    animation-delay: 0.05s;
}

.address-card:nth-child(2)[b-sg2hf36f75] {
    animation-delay: 0.1s;
}

.address-card:nth-child(3)[b-sg2hf36f75] {
    animation-delay: 0.15s;
}

.address-card:nth-child(4)[b-sg2hf36f75] {
    animation-delay: 0.2s;
}

.address-card:nth-child(5)[b-sg2hf36f75] {
    animation-delay: 0.25s;
}

.address-card:nth-child(n+6)[b-sg2hf36f75] {
    animation-delay: 0.3s;
}

.address-card:hover[b-sg2hf36f75] {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
}

.address-info[b-sg2hf36f75] {
    flex: 1;
    text-align: right;
}

.project-name[b-sg2hf36f75] {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.address-detail[b-sg2hf36f75] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.map-thumbnail[b-sg2hf36f75] {
    width: 100px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.map-thumbnail img[b-sg2hf36f75] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.add-btn[b-sg2hf36f75] {
    position: fixed;
    bottom: 40px;
    left: max(40px, calc(50% - 350px + 40px));
    background: #10B981;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.add-btn[b-sg2hf36f75]::after {
    content: '+';
    font-size: 20px;
    order: -1;
}

.add-btn:hover[b-sg2hf36f75] {
    background: #0ea574;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
}
/* /Pages/Auth/ForgotPassword.razor.rz.scp.css */
/* Forgot Password Page Styles */

/* Override and remove blueprint-overlay completely */
[b-oxo52xt5am] .blueprint-overlay {
    display: none !important;
    background: none !important;
    background-image: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

[b-oxo52xt5am] .blueprint-overlay::before,
[b-oxo52xt5am] .blueprint-overlay::after {
    display: none !important;
    content: none !important;
}

.auth-page[b-oxo52xt5am] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Responsive: limit width only on very large screens */
@media (min-width: 1400px) {
    .auth-page[b-oxo52xt5am] {
        max-width: 500px;
        margin: 0 auto;
    }
}

.page-header[b-oxo52xt5am] {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
    padding-top: 16px;
}

@media (max-width: 768px) {
    .page-header[b-oxo52xt5am] {
        padding-top: 8px;
        margin-bottom: 16px;
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

[dir="rtl"] .page-header[b-oxo52xt5am] {
    justify-content: flex-end;
}

.back-button[b-oxo52xt5am] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
}

/* Icon */
.icon-container[b-oxo52xt5am] {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.reset-icon[b-oxo52xt5am] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(30, 58, 95, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* Title */
.title-section[b-oxo52xt5am] {
    text-align: center;
    margin-bottom: 40px;
}

.page-title[b-oxo52xt5am] {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.page-subtitle[b-oxo52xt5am] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Form */
.reset-form[b-oxo52xt5am] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group[b-oxo52xt5am] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label[b-oxo52xt5am] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: start;
}

.form-input[b-oxo52xt5am],
[b-oxo52xt5am] .form-input,
[b-oxo52xt5am] input[type="email"],
[b-oxo52xt5am] input[type="text"],
[b-oxo52xt5am] input[type="password"] {
    width: 100% !important;
    padding: 18px 24px !important;
    background: rgba(22, 45, 75, 0.85) !important;
    border: none !important;
    border-radius: 30px !important;
    color: white !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.form-input:focus[b-oxo52xt5am],
[b-oxo52xt5am] .form-input:focus,
[b-oxo52xt5am] input[type="email"]:focus,
[b-oxo52xt5am] input[type="text"]:focus,
[b-oxo52xt5am] input[type="password"]:focus {
    background: rgba(22, 45, 75, 0.95) !important;
    box-shadow: 0 0 0 2px rgba(82, 196, 167, 0.3) !important;
}

.form-input[b-oxo52xt5am]::placeholder,
[b-oxo52xt5am] .form-input::placeholder,
[b-oxo52xt5am] input[type="email"]::placeholder,
[b-oxo52xt5am] input[type="text"]::placeholder,
[b-oxo52xt5am] input[type="password"]::placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Error */
.error-message[b-oxo52xt5am] {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}

/* Button */
.btn-next[b-oxo52xt5am] {
    width: 50%;
    margin: 16px auto 0;
    padding: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-next:hover:not(:disabled)[b-oxo52xt5am] {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.btn-next:disabled[b-oxo52xt5am] {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner[b-oxo52xt5am] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin-b-oxo52xt5am 0.8s linear infinite;
}

@keyframes spin-b-oxo52xt5am {
    to { transform: rotate(360deg); }
}
/* /Pages/Auth/Login.razor.rz.scp.css */
/* Override and remove blueprint-overlay completely */
[b-apm1r4misv] .blueprint-overlay {
    display: none !important;
    background: none !important;
    background-image: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

[b-apm1r4misv] .blueprint-overlay::before,
[b-apm1r4misv] .blueprint-overlay::after {
    display: none !important;
    content: none !important;
}

body[b-apm1r4misv] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://res.cloudinary.com/incometec/image/upload/v1768425429/App/overlay_ir7tul.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    direction: rtl;
    margin: 0;
    padding: 0;
}

    body[b-apm1r4misv]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://res.cloudinary.com/incometec/image/upload/v1768425428/App/background_bph5sz.png');
        background-size: cover;
        background-position: center;
        opacity: 0.25;
        z-index: 0;
    }

*[b-apm1r4misv] {
    box-sizing: border-box;
}


.background-overlay[b-apm1r4misv] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://res.cloudinary.com/incometec/image/upload/v1768425429/App/overlay_ir7tul.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.login-container[b-apm1r4misv] {
    position: relative;
    z-index: 1;
    padding: 50px 40px 40px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    direction: rtl;
}

/* Responsive: limit width only on very large screens for readability */
@media (min-width: 1400px) {
    .login-container[b-apm1r4misv] {
        max-width: 500px;
    }
}

.logo[b-apm1r4misv] {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

h1[b-apm1r4misv] {
    color: white;
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.subtitle[b-apm1r4misv] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 35px;
    font-weight: 400;
}

.input-group[b-apm1r4misv] {
    margin-bottom: 18px;
    text-align: left;
}

.input-label[b-apm1r4misv] {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    text-align: right;
    padding-right: 8px;
    font-weight: 400;
}

.input-wrapper[b-apm1r4misv] {
    position: relative;
}

.form-input[b-apm1r4misv],
[b-apm1r4misv] input[type="email"],
[b-apm1r4misv] input[type="text"],
[b-apm1r4misv] input[type="password"] {
    width: 100%;
    padding: 18px 24px;
    border: none;
    border-radius: 30px;
    background: rgba(22, 45, 75, 0.85);
    color: white;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-input[b-apm1r4misv]::placeholder,
[b-apm1r4misv] input[type="email"]::placeholder,
[b-apm1r4misv] input[type="text"]::placeholder,
[b-apm1r4misv] input[type="password"]::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.form-input:focus[b-apm1r4misv],
[b-apm1r4misv] input[type="email"]:focus,
[b-apm1r4misv] input[type="text"]:focus,
[b-apm1r4misv] input[type="password"]:focus {
    background: rgba(22, 45, 75, 0.95);
    box-shadow: 0 0 0 2px rgba(82, 196, 167, 0.3);
}

.password-toggle[b-apm1r4misv] {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle svg[b-apm1r4misv] {
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.6);
    transition: fill 0.3s ease;
}

.password-toggle:hover svg[b-apm1r4misv] {
    fill: rgba(255, 255, 255, 0.9);
}

.options-row[b-apm1r4misv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    margin-top: 18px;
    font-size: 14px;
}

.forgot-password[b-apm1r4misv] {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.forgot-password:hover[b-apm1r4misv] {
    color: #52c4a7;
}

.remember-me[b-apm1r4misv] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    user-select: none;
}

[b-apm1r4misv] input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #52c4a7;
    border-radius: 4px;
}

.login-button[b-apm1r4misv] {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #52c4a7 0%, #3da88a 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(82, 196, 167, 0.35);
    margin-bottom: 22px;
}

.login-button:hover[b-apm1r4misv] {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(82, 196, 167, 0.45);
}

.login-button:active[b-apm1r4misv] {
    transform: translateY(0);
}

.divider[b-apm1r4misv] {
    color: rgba(255, 255, 255, 0.7);
    margin: 22px 0;
    font-size: 14px;
    font-weight: 400;
}

.google-button[b-apm1r4misv] {
    width: auto;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    padding: 0;
}

.google-button img[b-apm1r4misv] {
    display: block;
    height: 100px;
    width: 239px;
    filter: drop-shadow(0 6px 20px rgba(234, 76, 137, 0.35));
    transition: all 0.3s ease;
}

.google-button:hover img[b-apm1r4misv] {
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 30px rgba(234, 76, 137, 0.45));
}

.register-section[b-apm1r4misv] {
    margin-top: 55px;
}

.register-text[b-apm1r4misv] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 400;
}

.register-button[b-apm1r4misv] {
    padding: 14px 40px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    background: transparent;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.register-button:hover[b-apm1r4misv] {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}
/* /Pages/Auth/PasswordChanged.razor.rz.scp.css */
/* Password Changed Success Page Styles */

/* Override and remove blueprint-overlay completely */
[b-8xqqpmcnih] .blueprint-overlay {
    display: none !important;
    background: none !important;
    background-image: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

[b-8xqqpmcnih] .blueprint-overlay::before,
[b-8xqqpmcnih] .blueprint-overlay::after {
    display: none !important;
    content: none !important;
}

.success-page[b-8xqqpmcnih] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100%;
    padding-top: 80px;
}

@media (max-width: 768px) {
    .success-page[b-8xqqpmcnih] {
        padding-top: 40px;
    }
}

/* Responsive: limit width only on very large screens */
@media (min-width: 1400px) {
    .success-page[b-8xqqpmcnih] {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Header removed from password-changed page */

/* Success Icon */
.icon-container[b-8xqqpmcnih] {
    margin-bottom: 32px;
    margin-top: 0;
}

.success-icon[b-8xqqpmcnih] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.35);
}

/* Title */
.title-section[b-8xqqpmcnih] {
    text-align: center;
    margin-bottom: 60px;
}

.page-title[b-8xqqpmcnih] {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.page-subtitle[b-8xqqpmcnih] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Login Button */
.btn-login[b-8xqqpmcnih] {
    width: 50%;
    padding: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    border-radius: 26px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    display: block;
}

.btn-login:hover[b-8xqqpmcnih] {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
}
/* /Pages/Auth/Register.razor.rz.scp.css */
/* Register Page Styles */

/* Override and remove blueprint-overlay completely */
[b-3d4zvqstto] .blueprint-overlay {
    display: none !important;
    background: none !important;
    background-image: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

[b-3d4zvqstto] .blueprint-overlay::before,
[b-3d4zvqstto] .blueprint-overlay::after {
    display: none !important;
    content: none !important;
}

.register-page[b-3d4zvqstto] {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Responsive: limit width only on very large screens */
@media (min-width: 1400px) {
    .register-page[b-3d4zvqstto] {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Header */
.page-header[b-3d4zvqstto] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    padding-top: 16px;
}

@media (max-width: 768px) {
    .page-header[b-3d4zvqstto] {
        padding-top: 8px;
        margin-bottom: 16px;
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

[dir="rtl"] .page-header[b-3d4zvqstto] {
    justify-content: flex-end;
}

.back-button[b-3d4zvqstto] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
}

.page-title[b-3d4zvqstto] {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.header-spacer[b-3d4zvqstto] {
    width: 40px;
}

/* Photo Upload */
.photo-upload-container[b-3d4zvqstto] {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.photo-upload[b-3d4zvqstto] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
}

.photo-upload:hover[b-3d4zvqstto] {
    transform: scale(1.05);
}

.photo-upload.has-photo[b-3d4zvqstto] {
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.camera-icon[b-3d4zvqstto] {
    color: #ffffff;
}

.photo-preview[b-3d4zvqstto] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-input[b-3d4zvqstto] {
    display: none;
}

/* Form */
.register-form[b-3d4zvqstto] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.form-group[b-3d4zvqstto] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Input - Pill Shape */
.form-input[b-3d4zvqstto],
[b-3d4zvqstto] .form-input,
[b-3d4zvqstto] input[type="email"],
[b-3d4zvqstto] input[type="text"],
[b-3d4zvqstto] input[type="tel"],
[b-3d4zvqstto] input[type="password"] {
    width: 100% !important;
    height: 50px !important;
    padding: 18px 24px !important;
    background: rgba(22, 45, 75, 0.85) !important;
    border: none !important;
    border-radius: 30px !important;
    color: white !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.form-input:focus[b-3d4zvqstto],
[b-3d4zvqstto] .form-input:focus,
[b-3d4zvqstto] input[type="email"]:focus,
[b-3d4zvqstto] input[type="text"]:focus,
[b-3d4zvqstto] input[type="tel"]:focus,
[b-3d4zvqstto] input[type="password"]:focus {
    background: rgba(22, 45, 75, 0.95) !important;
    box-shadow: 0 0 0 2px rgba(82, 196, 167, 0.3) !important;
}

.form-input[b-3d4zvqstto]::placeholder,
[b-3d4zvqstto] .form-input::placeholder,
[b-3d4zvqstto] input[type="email"]::placeholder,
[b-3d4zvqstto] input[type="text"]::placeholder,
[b-3d4zvqstto] input[type="tel"]::placeholder,
[b-3d4zvqstto] input[type="password"]::placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
}

[dir="rtl"] .form-input[b-3d4zvqstto]::placeholder,
[dir="rtl"][b-3d4zvqstto]  .form-input::placeholder {
    text-align: right !important;
}

[dir="ltr"] .form-input[b-3d4zvqstto]::placeholder,
[dir="ltr"][b-3d4zvqstto]  .form-input::placeholder {
    text-align: left !important;
}

/* Error Message */
.error-message[b-3d4zvqstto] {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
}

/* Register Button - Pill Shape */
.btn-register[b-3d4zvqstto] {
    width: 50%;
    height: 50px;
    margin: 20px auto 0;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    border: none !important;
    border-radius: 25px;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-register:hover:not(:disabled)[b-3d4zvqstto] {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.btn-register:disabled[b-3d4zvqstto] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spinner */
.spinner[b-3d4zvqstto] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin-b-3d4zvqstto 0.8s linear infinite;
}

@keyframes spin-b-3d4zvqstto {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive - limit width on larger screens */
@media (min-width: 500px) {
    .register-page[b-3d4zvqstto] {
        max-width: 420px;
        margin: 0 auto;
    }
}
/* /Pages/Auth/ResetPassword.razor.rz.scp.css */
/* Reset Password Page Styles */

/* Override and remove blueprint-overlay completely */
[b-o028j4v5ty] .blueprint-overlay {
    display: none !important;
    background: none !important;
    background-image: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

[b-o028j4v5ty] .blueprint-overlay::before,
[b-o028j4v5ty] .blueprint-overlay::after {
    display: none !important;
    content: none !important;
}

.auth-page[b-o028j4v5ty] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Responsive: limit width only on very large screens */
@media (min-width: 1400px) {
    .auth-page[b-o028j4v5ty] {
        max-width: 500px;
        margin: 0 auto;
    }
}

.page-header[b-o028j4v5ty] {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
    padding-top: 16px;
}

@media (max-width: 768px) {
    .page-header[b-o028j4v5ty] {
        padding-top: 8px;
        margin-bottom: 16px;
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

[dir="rtl"] .page-header[b-o028j4v5ty] {
    justify-content: flex-end;
}

.back-button[b-o028j4v5ty] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
}

/* Icon */
.icon-container[b-o028j4v5ty] {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.reset-icon[b-o028j4v5ty] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(30, 58, 95, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* Title */
.title-section[b-o028j4v5ty] {
    text-align: center;
    margin-bottom: 40px;
}

.page-title[b-o028j4v5ty] {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.page-subtitle[b-o028j4v5ty] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Form */
.reset-form[b-o028j4v5ty] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group[b-o028j4v5ty] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label[b-o028j4v5ty] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: start;
}

.input-wrapper[b-o028j4v5ty] {
    position: relative;
}

.form-input[b-o028j4v5ty],
[b-o028j4v5ty] .form-input,
[b-o028j4v5ty] input[type="email"],
[b-o028j4v5ty] input[type="text"],
[b-o028j4v5ty] input[type="password"] {
    width: 100% !important;
    padding: 18px 50px 18px 24px !important;
    background: rgba(22, 45, 75, 0.85) !important;
    border: none !important;
    border-radius: 30px !important;
    color: white !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

[dir="rtl"] .form-input[b-o028j4v5ty],
[dir="rtl"][b-o028j4v5ty]  .form-input,
[dir="rtl"][b-o028j4v5ty]  input[type="password"] {
    padding: 18px 24px 18px 50px !important;
}

.form-input:focus[b-o028j4v5ty],
[b-o028j4v5ty] .form-input:focus,
[b-o028j4v5ty] input[type="email"]:focus,
[b-o028j4v5ty] input[type="text"]:focus,
[b-o028j4v5ty] input[type="password"]:focus {
    background: rgba(22, 45, 75, 0.95) !important;
    box-shadow: 0 0 0 2px rgba(82, 196, 167, 0.3) !important;
}

.form-input[b-o028j4v5ty]::placeholder,
[b-o028j4v5ty] .form-input::placeholder,
[b-o028j4v5ty] input[type="email"]::placeholder,
[b-o028j4v5ty] input[type="text"]::placeholder,
[b-o028j4v5ty] input[type="password"]::placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Password Toggle */
.password-toggle[b-o028j4v5ty] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
}

[dir="rtl"] .password-toggle[b-o028j4v5ty] {
    left: 12px;
    right: auto;
}

[dir="ltr"] .password-toggle[b-o028j4v5ty] {
    right: 12px;
    left: auto;
}

.toggle-icon[b-o028j4v5ty] {
    font-size: 18px;
}

/* Error */
.error-message[b-o028j4v5ty] {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}

/* Button */
.btn-reset[b-o028j4v5ty] {
    width: 60%;
    margin: 24px auto 0;
    padding: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reset:hover:not(:disabled)[b-o028j4v5ty] {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.btn-reset:disabled[b-o028j4v5ty] {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner[b-o028j4v5ty] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin-b-o028j4v5ty 0.8s linear infinite;
}

@keyframes spin-b-o028j4v5ty {
    to { transform: rotate(360deg); }
}
/* /Pages/Auth/VerifyOtp.razor.rz.scp.css */
/* Verify OTP Page Styles */

/* Override and remove blueprint-overlay completely */
[b-t7kajpw1di] .blueprint-overlay {
    display: none !important;
    background: none !important;
    background-image: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

[b-t7kajpw1di] .blueprint-overlay::before,
[b-t7kajpw1di] .blueprint-overlay::after {
    display: none !important;
    content: none !important;
}

.auth-page[b-t7kajpw1di] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Responsive: limit width only on very large screens */
@media (min-width: 1400px) {
    .auth-page[b-t7kajpw1di] {
        max-width: 500px;
        margin: 0 auto;
    }
}

.page-header[b-t7kajpw1di] {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
    padding-top: 16px;
}

@media (max-width: 768px) {
    .page-header[b-t7kajpw1di] {
        padding-top: 8px;
        margin-bottom: 16px;
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

[dir="rtl"] .page-header[b-t7kajpw1di] {
    justify-content: flex-end;
}

.back-button[b-t7kajpw1di] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
}

/* Icon */
.icon-container[b-t7kajpw1di] {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.reset-icon[b-t7kajpw1di] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(30, 58, 95, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* Title */
.title-section[b-t7kajpw1di] {
    text-align: center;
    margin-bottom: 40px;
}

.page-title[b-t7kajpw1di] {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.page-subtitle[b-t7kajpw1di] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* OTP Form */
.otp-form[b-t7kajpw1di] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-label[b-t7kajpw1di] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.otp-input-container[b-t7kajpw1di] {
    display: flex;
    justify-content: center;
}

.otp-input-single[b-t7kajpw1di],
[b-t7kajpw1di] .otp-input-single {
    width: 100% !important;
    max-width: 200px !important;
    padding: 18px 24px !important;
    background: rgba(22, 45, 75, 0.85) !important;
    border: none !important;
    border-radius: 30px !important;
    color: white !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: center !important;
    letter-spacing: 8px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.otp-input-single:focus[b-t7kajpw1di],
[b-t7kajpw1di] .otp-input-single:focus {
    background: rgba(22, 45, 75, 0.95) !important;
    box-shadow: 0 0 0 2px rgba(82, 196, 167, 0.3) !important;
}

.otp-input-single[b-t7kajpw1di]::placeholder,
[b-t7kajpw1di] .otp-input-single::placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
    letter-spacing: 8px !important;
}

/* Resend */
.resend-section[b-t7kajpw1di] {
    text-align: center;
}

.resend-timer[b-t7kajpw1di] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.resend-btn[b-t7kajpw1di] {
    background: none;
    border: none;
    color: #3b82f6;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.resend-btn:hover[b-t7kajpw1di] {
    color: #60a5fa;
}

/* Error */
.error-message[b-t7kajpw1di] {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}

/* Button */
.btn-next[b-t7kajpw1di] {
    width: 50%;
    margin: 16px auto 0;
    padding: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-next:hover:not(:disabled)[b-t7kajpw1di] {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.btn-next:disabled[b-t7kajpw1di] {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner[b-t7kajpw1di] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin-b-t7kajpw1di 0.8s linear infinite;
}

@keyframes spin-b-t7kajpw1di {
    to { transform: rotate(360deg); }
}
/* /Pages/Cards2/Index.razor.rz.scp.css */
/* Cards2 Page - Vertical Card List */

.cards2-page[b-cxrprz910m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 20px 0 0;
    overflow: hidden;
}

/* Loading & Empty States */
.loading-state[b-cxrprz910m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.loading-spinner[b-cxrprz910m] {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: #60a5fa;
    border-radius: 50%;
    animation: spin-b-cxrprz910m 0.8s linear infinite;
}

@keyframes spin-b-cxrprz910m {
    to { transform: rotate(360deg); }
}

.empty-state[b-cxrprz910m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

.empty-icon[b-cxrprz910m] {
    opacity: 0.5;
}

/* ===== Vertical Card List ===== */
.card-list[b-cxrprz910m] {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    padding: 8px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
}

.card-item[b-cxrprz910m] {
    width: 100%;
    max-width: 340px;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 20px;
    border: 2.5px solid transparent;
}

.card-item:active[b-cxrprz910m] {
    transform: scale(0.98);
}

.card-item.selected[b-cxrprz910m] {
    border-color: #ffffff;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.25), 0 0 8px rgba(255, 255, 255, 0.15);
}

/* ===== Credit Card Visuals ===== */
.credit-card[b-cxrprz910m] {
    width: 100%;
    aspect-ratio: 1.586;
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Colored card shadows */
.credit-card.card-blue[b-cxrprz910m] {
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.credit-card.card-orange[b-cxrprz910m] {
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.credit-card.card-purple[b-cxrprz910m] {
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.credit-card.card-green[b-cxrprz910m] {
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.credit-card.card-pink[b-cxrprz910m] {
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Glossy overlay */
.credit-card[b-cxrprz910m]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.06) 30%,
        transparent 55%,
        rgba(0, 0, 0, 0.06) 100%
    );
    border-radius: 18px;
    pointer-events: none;
    z-index: 2;
}

/* Blob texture layer */
.card-texture[b-cxrprz910m] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.card-texture svg[b-cxrprz910m] {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Card Type Gradients - 5 Color Palette */
.card-blue[b-cxrprz910m] {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 40%, #38bdf8 100%);
}

.card-orange[b-cxrprz910m] {
    background: linear-gradient(135deg, #c2410c 0%, #f97316 40%, #fdba74 100%);
}

.card-purple[b-cxrprz910m] {
    background: linear-gradient(135deg, #581c87 0%, #9333ea 40%, #c084fc 100%);
}

.card-green[b-cxrprz910m] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 40%, #6ee7b7 100%);
}

.card-pink[b-cxrprz910m] {
    background: linear-gradient(135deg, #9d174d 0%, #ec4899 40%, #f9a8d4 100%);
}

/* Card Internal Layout */
.card-top[b-cxrprz910m] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.card-chip[b-cxrprz910m] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Card Number Section */
.card-number-section[b-cxrprz910m] {
    position: relative;
    z-index: 2;
}

.card-number-display[b-cxrprz910m] {
    display: flex;
    gap: 12px;
    font-family: 'Courier New', 'Lucida Console', monospace;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    direction: ltr;
}

.masked-group[b-cxrprz910m] {
    opacity: 0.55;
    letter-spacing: 3px;
}

.last-four[b-cxrprz910m] {
    letter-spacing: 3px;
}

/* Card Bottom Section */
.card-bottom[b-cxrprz910m] {
    position: relative;
    z-index: 2;
}

.card-details-row[b-cxrprz910m] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    direction: ltr;
}

.card-holder-section[b-cxrprz910m],
.card-expiry-section[b-cxrprz910m] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.card-label[b-cxrprz910m] {
    font-size: 7px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.6;
    font-weight: 400;
}

.card-holder-name[b-cxrprz910m] {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.card-expiry-value[b-cxrprz910m] {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.card-brand-logo[b-cxrprz910m] {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.card-brand-logo img[b-cxrprz910m] {
    width: 48px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

/* Default Badge (middle right of card) */
.default-badge[b-cxrprz910m] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 5px 12px 5px 5px;
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.default-badge-icon[b-cxrprz910m] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Selected overlay - washes out the card */
.selected-overlay[b-cxrprz910m] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255 / 38%);
    border-radius: 18px;
    z-index: 4;
    pointer-events: none;
    border: #dddddd 3px solid;
}

/* Selected checkmark */
.selected-check[b-cxrprz910m] {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2.5px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ===== Top Bar: Amount ===== */
.top-bar[b-cxrprz910m] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 40px);
    max-width: 360px;
    flex-shrink: 0;
    margin-bottom: 8px;
}

.amount-top[b-cxrprz910m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

/* Floating Add Card Button (FAB) */
.fab-add-card[b-cxrprz910m] {
    position: fixed;
    bottom: 90px;
    left: max(20px, calc(50% - 350px + 20px));
    z-index: 100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fab-add-card:hover[b-cxrprz910m] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.5), 0 3px 12px rgba(0, 0, 0, 0.25);
}

.fab-add-card:active[b-cxrprz910m] {
    transform: scale(0.95);
}

.amount-input-wrapper[b-cxrprz910m] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 10px 20px;
    width: 100%;
    direction: ltr;
}

.amount-input-wrapper .amount-input[b-cxrprz910m] {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    outline: none;
    width: 100%;
    min-width: 0;
}

.amount-input-wrapper .amount-input[b-cxrprz910m]::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.amount-input-wrapper .amount-input[b-cxrprz910m]::-webkit-outer-spin-button,
.amount-input-wrapper .amount-input[b-cxrprz910m]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.amount-input-wrapper .amount-input[type=number][b-cxrprz910m] {
    -moz-appearance: textfield;
}

.currency-symbol[b-cxrprz910m] {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.amount-label[b-cxrprz910m] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Actions Area ===== */
.card-actions-area[b-cxrprz910m] {
    width: calc(100% - 40px);
    max-width: 340px;
    padding: 12px 0 20px;
    flex-shrink: 0;
}

/* Edit Button (top center, prominent) */
.card-edit-btn[b-cxrprz910m] {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.card-edit-btn:hover[b-cxrprz910m] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) scale(1.05);
}

.card-edit-btn:active[b-cxrprz910m] {
    transform: translateX(-50%) scale(0.97);
}

/* Add Card Button (empty state) */
.add-card-btn[b-cxrprz910m] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 280px;
    padding: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 24px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    margin-top: 8px;
}

.add-card-btn:hover[b-cxrprz910m] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Continue Button */
.continue-btn[b-cxrprz910m] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 24px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 16px;
    font-weight: 500;
    cursor: not-allowed;
    transition: all 0.2s;
}

.continue-btn:not(:disabled)[b-cxrprz910m] {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.continue-btn:not(:disabled):hover[b-cxrprz910m] {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Arrow is already pointing left (RTL direction) via SVG path */

/* ===== Modals ===== */
.modal-overlay[b-cxrprz910m] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
}

.modal[b-cxrprz910m] {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    padding: 16px 20px 32px;
    z-index: 201;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp-b-cxrprz910m 0.3s ease-out;
}

@keyframes slideUp-b-cxrprz910m {
    from { transform: translateX(-50%) translateY(100%); }
    to { transform: translateX(-50%) translateY(0); }
}

.modal-handle[b-cxrprz910m] {
    width: 40px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 0 auto 16px;
}

.modal-title[b-cxrprz910m] {
    font-size: 20px;
    font-weight: 600;
    color: #2B3E5F;
    text-align: center;
    margin-bottom: 24px;
}

.edit-card-preview[b-cxrprz910m] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
    direction: rtl;
}

.preview-card-icon[b-cxrprz910m] {
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-card-icon img[b-cxrprz910m] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.preview-card-number[b-cxrprz910m] {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 500;
    color: #2B3E5F;
    letter-spacing: 1px;
}

/* Form Styles */
.form-group[b-cxrprz910m] {
    margin-bottom: 16px;
}

.form-group label[b-cxrprz910m] {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 8px;
    text-align: right;
}

.form-group input[type="text"][b-cxrprz910m],
.form-group input[type="password"][b-cxrprz910m] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    color: #2B3E5F;
    background: #f8f9fa;
    direction: rtl;
    text-align: right;
}

.form-group input.ltr-input[b-cxrprz910m] {
    direction: ltr;
    text-align: left;
}

.form-group input:focus[b-cxrprz910m] {
    outline: none;
    border-color: #10B981;
    background: #ffffff;
}

.form-row[b-cxrprz910m] {
    display: flex;
    gap: 16px;
}

.form-group.half[b-cxrprz910m] {
    flex: 1;
}

.readonly-input[b-cxrprz910m] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    color: #6b7280;
    background: #f0f0f0;
    direction: rtl;
    text-align: right;
    cursor: default;
}

.card-input-wrapper[b-cxrprz910m] {
    position: relative;
    display: flex;
    align-items: center;
}

.card-input-wrapper input[b-cxrprz910m] {
    width: 100%;
    padding: 14px 16px;
    padding-right: 50px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    color: #2B3E5F;
    background: #f8f9fa;
    direction: ltr;
    text-align: left;
    font-family: 'Courier New', monospace;
    letter-spacing: 1.5px;
}

.card-input-wrapper input:focus[b-cxrprz910m] {
    outline: none;
    border-color: #10B981;
    background: #ffffff;
}

.detected-card-icon[b-cxrprz910m] {
    position: absolute;
    right: 12px;
    width: 36px;
    height: 24px;
    object-fit: contain;
}

.checkbox-group[b-cxrprz910m] {
    margin-bottom: 16px;
}

.checkbox-label[b-cxrprz910m] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #4b5563;
    cursor: pointer;
    direction: rtl;
}

.checkbox-label input[type="checkbox"][b-cxrprz910m] {
    width: 20px;
    height: 20px;
    accent-color: #10B981;
    cursor: pointer;
}

.error-message[b-cxrprz910m] {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
}

.modal-actions[b-cxrprz910m] {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-cancel[b-cxrprz910m],
.btn-save[b-cxrprz910m] {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel[b-cxrprz910m] {
    background: #f3f4f6;
    border: none;
    color: #4b5563;
}

.btn-cancel:hover[b-cxrprz910m] {
    background: #e5e7eb;
}

.btn-save[b-cxrprz910m] {
    background: #10B981;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-save:hover:not(:disabled)[b-cxrprz910m] {
    background: #059669;
}

.btn-save:disabled[b-cxrprz910m] {
    background: #9ca3af;
    cursor: not-allowed;
}

.btn-delete-card[b-cxrprz910m] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: transparent;
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-delete-card:hover:not(:disabled)[b-cxrprz910m] {
    background: #fef2f2;
    border-color: #dc2626;
}

.btn-delete-card:disabled[b-cxrprz910m] {
    opacity: 0.5;
    cursor: not-allowed;
}

.confirm-modal[b-cxrprz910m] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px 24px;
    z-index: 201;
    width: 85%;
    max-width: 340px;
    text-align: center;
    animation: fadeIn-b-cxrprz910m 0.2s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn-b-cxrprz910m {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.confirm-icon[b-cxrprz910m] {
    margin-bottom: 16px;
}

.confirm-title[b-cxrprz910m] {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px;
}

.confirm-text[b-cxrprz910m] {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px;
}

.confirm-actions[b-cxrprz910m] {
    display: flex;
    gap: 12px;
}

.confirm-actions .btn-cancel[b-cxrprz910m] {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: #f3f4f6;
    border: none;
    color: #4b5563;
    cursor: pointer;
}

.btn-delete[b-cxrprz910m] {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: #dc2626;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-delete:hover:not(:disabled)[b-cxrprz910m] {
    background: #b91c1c;
}

.btn-delete:disabled[b-cxrprz910m] {
    background: #9ca3af;
    cursor: not-allowed;
}

.spinner[b-cxrprz910m] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-cxrprz910m 0.8s linear infinite;
}
/* /Pages/Cards/Index.razor.rz.scp.css */
/* Cards Page Styles */

.cards-page[b-paeh19803j] {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* Header Section */
.header-section[b-paeh19803j] {
    flex-shrink: 0;
    padding: 16px 20px;
    background: #1A3A6B;
}

.filter-row[b-paeh19803j] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.city-dropdown[b-paeh19803j] {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #0B1C35BF;
    padding: 12px 16px;
    border-radius: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
}

.city-dropdown svg[b-paeh19803j] {
    transition: transform 0.2s;
}

.city-dropdown svg.rotated[b-paeh19803j] {
    transform: rotate(180deg);
}

/* Dropdown Overlay */
.dropdown-overlay[b-paeh19803j] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 99;
}

/* City Dropdown Panel */
.city-dropdown-panel[b-paeh19803j] {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    background: #0B1C35;
    border-radius: 16px;
    padding: 8px 0;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown-item[b-paeh19803j] {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    text-align: right;
    direction: rtl;
}

.dropdown-item span[b-paeh19803j] {
    flex: 1;
}

.dropdown-item:hover[b-paeh19803j] {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item.selected[b-paeh19803j] {
    color: #10B981;
}

.radio-circle[b-paeh19803j] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: relative;
}

.radio-circle.checked[b-paeh19803j] {
    border-color: #10B981;
    background: #10B981;
}

.radio-circle.checked[b-paeh19803j]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

/* Amount Section */
.amount-section[b-paeh19803j] {
    padding: 20px;
    text-align: center;
}

.amount-card[b-paeh19803j] {
    background: linear-gradient(135deg, #1e3a5f 0%, #152238 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 8px;
}

.amount-value[b-paeh19803j] {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    direction: ltr;
}

.amount-input[b-paeh19803j] {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    width: 150px;
    padding: 4px 8px;
    outline: none;
    direction: ltr;
}

.amount-input:focus[b-paeh19803j] {
    border-bottom-color: #10B981;
}

.amount-input[b-paeh19803j]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Hide number input spinners */
.amount-input[b-paeh19803j]::-webkit-outer-spin-button,
.amount-input[b-paeh19803j]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.amount-input[type=number][b-paeh19803j] {
    -moz-appearance: textfield;
}

.amount-value .currency[b-paeh19803j] {
    font-size: 24px;
    font-weight: 400;
}

.amount-label[b-paeh19803j] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Content Area */
.content-area[b-paeh19803j] {
    flex: 1;
    min-height: 0;
    padding: 0 20px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f5f7fa;
    border-radius: 24px 24px 0 0;
    margin-top: -10px;
    padding-top: 20px;
}

/* Add Card Button */
.add-card-btn[b-paeh19803j] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: #ffffff;
    border: 2px dashed #c4cdd5;
    border-radius: 12px;
    color: #2B3E5F;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.add-card-btn:hover[b-paeh19803j] {
    border-color: #10B981;
    color: #10B981;
}

.add-card-btn .plus-icon[b-paeh19803j] {
    font-size: 20px;
    font-weight: 300;
}

/* Cards List */
.cards-list[b-paeh19803j] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-item[b-paeh19803j] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    position: relative;
}

.card-item:hover[b-paeh19803j] {
    border-color: rgba(16, 185, 129, 0.3);
}

.card-item.default[b-paeh19803j] {
    border-color: #10B981;
}

.card-icon[b-paeh19803j] {
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img[b-paeh19803j] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-info[b-paeh19803j] {
    flex: 1;
    text-align: right;
    direction: rtl;
}

.card-number[b-paeh19803j] {
    font-size: 15px;
    font-weight: 500;
    color: #2B3E5F;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.card-expiry[b-paeh19803j] {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}

.default-badge[b-paeh19803j] {
    background: #10B981;
    color: #ffffff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 500;
}

.card-radio[b-paeh19803j] {
    margin-left: 8px;
}

/* Loading & Empty States */
.loading-state[b-paeh19803j],
.empty-state[b-paeh19803j] {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 14px;
}

/* Footer Section */
.footer-section[b-paeh19803j] {
    flex-shrink: 0;
    padding: 16px 20px;
    background: #f5f7fa;
}

.continue-btn[b-paeh19803j] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: #c4cdd5;
    border: none;
    border-radius: 24px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: not-allowed;
    transition: all 0.2s;
}

.continue-btn:not(:disabled)[b-paeh19803j] {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    cursor: pointer;
}

.continue-btn:not(:disabled):hover[b-paeh19803j] {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.continue-btn svg[b-paeh19803j] {
    transform: rotate(180deg);
}

/* Modal Styles */
.modal-overlay[b-paeh19803j] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
}

.modal[b-paeh19803j] {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    padding: 16px 20px 32px;
    z-index: 201;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp-b-paeh19803j 0.3s ease-out;
}

@keyframes slideUp-b-paeh19803j {
    from {
        transform: translateX(-50%) translateY(100%);
    }
    to {
        transform: translateX(-50%) translateY(0);
    }
}

.modal-handle[b-paeh19803j] {
    width: 40px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 0 auto 16px;
}

.modal-title[b-paeh19803j] {
    font-size: 20px;
    font-weight: 600;
    color: #2B3E5F;
    text-align: center;
    margin-bottom: 24px;
}

/* Form Styles */
.form-group[b-paeh19803j] {
    margin-bottom: 16px;
}

.form-group label[b-paeh19803j] {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 8px;
    text-align: right;
}

.form-group input[type="text"][b-paeh19803j],
.form-group input[type="password"][b-paeh19803j] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    color: #2B3E5F;
    background: #f8f9fa;
    direction: rtl;
    text-align: right;
}

.form-group input.ltr-input[b-paeh19803j] {
    direction: ltr;
    text-align: left;
}

.form-group input:focus[b-paeh19803j] {
    outline: none;
    border-color: #10B981;
    background: #ffffff;
}

.form-row[b-paeh19803j] {
    display: flex;
    gap: 16px;
}

.form-group.half[b-paeh19803j] {
    flex: 1;
}

.card-input-wrapper[b-paeh19803j] {
    position: relative;
}

.card-input-wrapper input[b-paeh19803j] {
    padding-right: 60px;
}

.detected-card-icon[b-paeh19803j] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 28px;
    object-fit: contain;
}

/* Checkbox Styles */
.checkbox-group[b-paeh19803j] {
    margin-top: 8px;
}

.checkbox-label[b-paeh19803j] {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #4b5563;
    direction: rtl;
}

.checkbox-label input[type="checkbox"][b-paeh19803j] {
    display: none;
}

.checkmark[b-paeh19803j] {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    border: 3px solid #10B981;
    border-radius: 8px;
    position: relative;
    transition: all 0.2s;
    background: #ffffff;
    flex-shrink: 0;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.checkbox-label input:checked + .checkmark[b-paeh19803j] {
    background: #10B981;
    border-color: #10B981;
}

.checkbox-label input:checked + .checkmark[b-paeh19803j]::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Error Message */
.error-message[b-paeh19803j] {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
}

/* Modal Actions */
.modal-actions[b-paeh19803j] {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-cancel[b-paeh19803j],
.btn-save[b-paeh19803j] {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel[b-paeh19803j] {
    background: #f3f4f6;
    border: none;
    color: #4b5563;
}

.btn-cancel:hover[b-paeh19803j] {
    background: #e5e7eb;
}

.btn-save[b-paeh19803j] {
    background: #10B981;
    border: none;
    color: #ffffff;
}

.btn-save:hover:not(:disabled)[b-paeh19803j] {
    background: #059669;
}

.btn-save:disabled[b-paeh19803j] {
    background: #9ca3af;
    cursor: not-allowed;
}

.btn-save[b-paeh19803j] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Spinner Animation */
.spinner[b-paeh19803j] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-paeh19803j 0.8s linear infinite;
}

@keyframes spin-b-paeh19803j {
    to {
        transform: rotate(360deg);
    }
}

/* Card Action Buttons (Edit / Delete) */
.card-actions[b-paeh19803j] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.action-icon[b-paeh19803j] {
    width: 32px;
    height: 32px;
    border: 1.5px solid #d1d5db;
    background: #f9fafb;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s;
}

.edit-icon[b-paeh19803j] {
    color: #2563eb;
    border-color: #bfdbfe;
    background: #eff6ff;
}

.edit-icon:hover[b-paeh19803j] {
    background: #dbeafe;
    border-color: #2563eb;
    color: #1d4ed8;
}

.delete-icon[b-paeh19803j] {
    color: #9ca3af;
}

.delete-icon:hover[b-paeh19803j] {
    background: #fef2f2;
    color: #dc2626;
}

/* Edit Card Preview */
.edit-card-preview[b-paeh19803j] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
    direction: rtl;
}

.edit-card-preview .card-number[b-paeh19803j] {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 500;
    color: #2B3E5F;
    letter-spacing: 1px;
}

/* Delete Confirmation Modal */
.confirm-modal[b-paeh19803j] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px 24px;
    z-index: 201;
    width: 85%;
    max-width: 340px;
    text-align: center;
    animation: fadeIn-b-paeh19803j 0.2s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn-b-paeh19803j {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.confirm-icon[b-paeh19803j] {
    margin-bottom: 16px;
}

.confirm-title[b-paeh19803j] {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px;
}

.confirm-text[b-paeh19803j] {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px;
}

.confirm-actions[b-paeh19803j] {
    display: flex;
    gap: 12px;
}

.confirm-actions .btn-cancel[b-paeh19803j] {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: #f3f4f6;
    border: none;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s;
}

.confirm-actions .btn-cancel:hover[b-paeh19803j] {
    background: #e5e7eb;
}

.btn-delete[b-paeh19803j] {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: #dc2626;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-delete:hover:not(:disabled)[b-paeh19803j] {
    background: #b91c1c;
}

.btn-delete:disabled[b-paeh19803j] {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Read-only input */
.readonly-input[b-paeh19803j] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    color: #6b7280;
    background: #f0f0f0;
    direction: rtl;
    text-align: right;
    cursor: default;
}

/* Delete button inside edit modal */
.btn-delete-card[b-paeh19803j] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: transparent;
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-delete-card:hover:not(:disabled)[b-paeh19803j] {
    background: #fef2f2;
    border-color: #dc2626;
}

.btn-delete-card:disabled[b-paeh19803j] {
    opacity: 0.5;
    cursor: not-allowed;
}
/* /Pages/Entries/Index.razor.rz.scp.css */
/* Entry History Page */

.entries-page[b-25ys1ydatj] {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Header Section - Dark Background */
.header-section[b-25ys1ydatj] {
    flex-shrink: 0;
    padding: 16px 20px;
    background: #1A3A6B;
}

/* Filter Row */
.filter-row[b-25ys1ydatj] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.search-icon[b-25ys1ydatj] {
    width: 40px;
    height: 40px;
    background: #0B1C35BF;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.address-dropdown[b-25ys1ydatj] {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #0B1C35BF;
    padding: 12px 16px;
    border-radius: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
}

.address-dropdown svg[b-25ys1ydatj] {
    transition: transform 0.2s;
}

.address-dropdown svg.rotated[b-25ys1ydatj] {
    transform: rotate(180deg);
}

/* Search Input Mode */
.search-input-container[b-25ys1ydatj] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0B1C35BF;
    padding: 10px 16px;
    border-radius: 10px;
    animation: expandSearch-b-25ys1ydatj 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    overflow: hidden;
}

@keyframes expandSearch-b-25ys1ydatj {
    0% {
        flex: 0 0 40px;
        max-width: 40px;
    }
    100% {
        flex: 1;
        max-width: 100%;
    }
}

.search-input-container .search-input[b-25ys1ydatj] {
    animation: fadeInContent-b-25ys1ydatj 0.3s ease 0.2s forwards;
    opacity: 0;
}

.search-input-container .search-close-btn[b-25ys1ydatj] {
    animation: fadeInContent-b-25ys1ydatj 0.3s ease 0.25s forwards;
    opacity: 0;
}

@keyframes fadeInContent-b-25ys1ydatj {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Search closing animation */
.search-input-container.closing[b-25ys1ydatj] {
    animation: shrinkSearch-b-25ys1ydatj 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.search-input-container.closing .search-input[b-25ys1ydatj],
.search-input-container.closing .search-close-btn[b-25ys1ydatj] {
    animation: fadeOutContent-b-25ys1ydatj 0.15s ease forwards;
}

@keyframes shrinkSearch-b-25ys1ydatj {
    0% {
        flex: 1;
        max-width: 100%;
    }
    100% {
        flex: 0 0 40px;
        max-width: 40px;
    }
}

@keyframes fadeOutContent-b-25ys1ydatj {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.search-input[b-25ys1ydatj] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    direction: rtl;
    text-align: right;
}

.search-input[b-25ys1ydatj]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-close-btn[b-25ys1ydatj] {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.search-close-btn:hover[b-25ys1ydatj] {
    transform: scale(1.1);
}

/* Filter row animation */
.filter-row[b-25ys1ydatj] {
    transition: all 0.3s ease;
}

/* View Mode Toggle */
.view-toggle[b-25ys1ydatj] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.view-toggle span[b-25ys1ydatj] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.view-toggle span.active[b-25ys1ydatj] {
    color: #10B981;
}

.toggle-switch[b-25ys1ydatj] {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
}

.toggle-switch.on[b-25ys1ydatj] {
    background: #10B981;
}

.toggle-knob[b-25ys1ydatj] {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left 0.2s;
}

.toggle-switch.on .toggle-knob[b-25ys1ydatj] {
    left: 22px;
}

/* Dropdown Overlay */
.dropdown-overlay[b-25ys1ydatj] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 99;
}

/* Address Dropdown Panel */
.address-dropdown-panel[b-25ys1ydatj] {
    position: absolute;
    top: 120px;
    left: 20px;
    right: 20px;
    background: linear-gradient(180deg, #1a2744 0%, #0f1829 100%);
    border-radius: 16px;
    padding: 8px 0;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown-item[b-25ys1ydatj] {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    text-align: right;
    direction: rtl;
}

.dropdown-item > span[b-25ys1ydatj] {
    flex: 1;
}

.dropdown-item:hover[b-25ys1ydatj] {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item.selected[b-25ys1ydatj] {
    color: #10B981;
}

.address-item-info[b-25ys1ydatj] {
    flex: 1;
    text-align: right;
}

.address-project[b-25ys1ydatj] {
    font-weight: 600;
    margin-bottom: 4px;
}

.address-detail[b-25ys1ydatj] {
    font-size: 13px;
    opacity: 0.7;
}

.radio-circle[b-25ys1ydatj] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: relative;
}

.radio-circle.checked[b-25ys1ydatj] {
    border-color: #10B981;
    background: #10B981;
}

.radio-circle.checked[b-25ys1ydatj]::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

.checkbox-circle[b-25ys1ydatj] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: relative;
}

.checkbox-circle.checked[b-25ys1ydatj] {
    border-color: #10B981;
    background: #10B981;
}

.checkbox-circle.checked[b-25ys1ydatj]::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

/* Content Area - White Background */
.content[b-25ys1ydatj] {
    flex: 1;
    min-height: 0;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 20px;
    padding-bottom: 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Date Filter */
.date-filter-container[b-25ys1ydatj] {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.date-filter[b-25ys1ydatj] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.date-filter svg[b-25ys1ydatj] {
    transition: transform 0.2s;
}

.date-filter svg.rotated[b-25ys1ydatj] {
    transform: rotate(180deg);
}

/* Date Dropdown Panel */
.date-dropdown-panel[b-25ys1ydatj] {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #1a2744 0%, #0f1829 100%);
    border-radius: 16px;
    padding: 12px 0;
    z-index: 100;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.date-option[b-25ys1ydatj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
}

.date-option:hover[b-25ys1ydatj] {
    background: rgba(255, 255, 255, 0.05);
}

.date-option.selected[b-25ys1ydatj] {
    color: #10B981;
}

.checkmark[b-25ys1ydatj] {
    color: #10B981;
    font-size: 16px;
}

.date-range-display[b-25ys1ydatj] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #10B981;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
}

/* Entries List */
.entries-list[b-25ys1ydatj] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.entry-item[b-25ys1ydatj] {
    display: flex;
    align-items: center;
    padding: 16px 0;
    direction: rtl;
}

.entry-item:last-child[b-25ys1ydatj] {
    border-bottom: none;
}

.entry-item.refund[b-25ys1ydatj] {
    background: #fef2f2;
}

/* Entry Date - LEFT side of screen (in RTL) */
.entry-date[b-25ys1ydatj] {
    flex-shrink: 0;
    text-align: left;
    min-width: 100px;
    direction: ltr;
}

.entry-date-main[b-25ys1ydatj] {
    font-size: 14px;
    font-weight: 600;
    color: #2B3E5F;
}

.entry-date-time[b-25ys1ydatj] {
    font-size: 15px;
    color: #9CA3AF;
}

/* Entry Info - MIDDLE */
.entry-info[b-25ys1ydatj] {
    flex: 1;
    text-align: right;
    padding: 0 12px;
}

.entry-name[b-25ys1ydatj] {
    font-size: 15px;
    font-weight: 600;
    color: #2B3E5F;
}

.entry-address[b-25ys1ydatj] {
    font-size: 13px;
    color: #9CA3AF;
}

/* Entry Avatar - RIGHT side */
.entry-avatar[b-25ys1ydatj] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

/* By Date Mode */
.entry-item.by-date .entry-count[b-25ys1ydatj] {
    min-width: 60px;
    font-size: 20px;
    font-weight: 700;
    color: #2B3E5F;
    text-align: left;
    direction: ltr;
    flex-shrink: 0;
}

.entry-item.by-date .entry-info[b-25ys1ydatj] {
    flex: 1;
    text-align: right;
    padding: 0 12px;
}

.entry-date-main[b-25ys1ydatj] {
    font-size: 15px;
    font-weight: 600;
    color: #2B3E5F;
}

.entry-location[b-25ys1ydatj] {
    font-size: 13px;
    color: #9CA3AF;
}

/* Loading & Empty States */
.loading[b-25ys1ydatj], .empty-state[b-25ys1ydatj] {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* Modal Overlay */
.modal-overlay[b-25ys1ydatj] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
}

/* Date Range Modal - New Design */
.date-range-modal[b-25ys1ydatj] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    width: 90%;
    max-width: 340px;
    z-index: 201;
    animation: fadeInModal-b-25ys1ydatj 0.25s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInModal-b-25ys1ydatj {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-close[b-25ys1ydatj] {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-range-modal h3[b-25ys1ydatj] {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #2B3E5F;
    margin-bottom: 24px;
    margin-top: 8px;
}

.date-selector-group[b-25ys1ydatj] {
    margin-bottom: 20px;
}

.date-selector-group label[b-25ys1ydatj] {
    display: block;
    text-align: right;
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 8px;
}

.date-selector-row[b-25ys1ydatj] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-nav-btn[b-25ys1ydatj] {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.date-nav-btn:hover[b-25ys1ydatj] {
    background: #f3f4f6;
}

.date-display[b-25ys1ydatj] {
    flex: 1;
    height: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: #1A3A6B;
    cursor: pointer;
    transition: border-color 0.2s;
}

.date-display:hover[b-25ys1ydatj] {
    border-color: #1A3A6B;
}

.date-display.placeholder[b-25ys1ydatj] {
    color: #10B981;
    font-weight: 400;
}

.modal-buttons[b-25ys1ydatj] {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-clear[b-25ys1ydatj], .btn-apply[b-25ys1ydatj] {
    flex: 1;
    height: 48px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.btn-clear:hover[b-25ys1ydatj], .btn-apply:hover[b-25ys1ydatj] {
    opacity: 0.9;
}

.btn-clear[b-25ys1ydatj] {
    background: #1A3A6B;
    color: #fff;
}

.btn-apply[b-25ys1ydatj] {
    background: #10B981;
    color: #fff;
}

/* Calendar Modal */
.calendar-modal[b-25ys1ydatj] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 340px;
    z-index: 202;
    animation: fadeInModal-b-25ys1ydatj 0.25s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.calendar-header[b-25ys1ydatj] {
    background: #10B981;
    padding: 20px;
    color: #fff;
    position: relative;
}

.calendar-header-label[b-25ys1ydatj] {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.calendar-selected-date[b-25ys1ydatj] {
    font-size: 28px;
    font-weight: 400;
}

.calendar-edit-btn[b-25ys1ydatj] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.8;
}

.calendar-body[b-25ys1ydatj] {
    padding: 16px;
}

.calendar-month-nav[b-25ys1ydatj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.month-year-display[b-25ys1ydatj] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.month-nav-buttons[b-25ys1ydatj] {
    display: flex;
    gap: 8px;
}

.month-nav-buttons button[b-25ys1ydatj] {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.month-nav-buttons button:hover[b-25ys1ydatj] {
    background: #f3f4f6;
}

.calendar-weekdays[b-25ys1ydatj] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}

.calendar-weekdays span[b-25ys1ydatj] {
    font-size: 13px;
    color: #9CA3AF;
    padding: 8px 0;
}

.calendar-days[b-25ys1ydatj] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day[b-25ys1ydatj] {
    width: 100%;
    aspect-ratio: 1;
    border: none;
    background: transparent;
    border-radius: 50%;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover:not(:disabled)[b-25ys1ydatj] {
    background: #f3f4f6;
}

.calendar-day.other-month[b-25ys1ydatj] {
    color: #d1d5db;
}

.calendar-day.today[b-25ys1ydatj] {
    border: 1px solid #333;
}

.calendar-day.selected[b-25ys1ydatj] {
    background: #10B981 !important;
    color: #fff !important;
    border: none !important;
}

.calendar-day:disabled[b-25ys1ydatj] {
    cursor: default;
}

.calendar-actions[b-25ys1ydatj] {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.calendar-cancel[b-25ys1ydatj], .calendar-ok[b-25ys1ydatj] {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
}

.calendar-cancel[b-25ys1ydatj] {
    color: #10B981;
}

.calendar-ok[b-25ys1ydatj] {
    color: #10B981;
}

.calendar-cancel:hover[b-25ys1ydatj], .calendar-ok:hover[b-25ys1ydatj] {
    background: rgba(16, 185, 129, 0.1);
}
/* /Pages/Home.razor.rz.scp.css */
/* Home Page Styles - Dark Theme */

.home-page[b-7z3x1fznhe] {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* Header Section - Dark Background */
.header-section[b-7z3x1fznhe] {
    flex-shrink: 0;
    padding: 16px 20px;
    background: #1A3A6B;
}

.filter-row[b-7z3x1fznhe] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.city-dropdown[b-7z3x1fznhe] {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #0B1C35BF;
    padding: 12px 16px;
    border-radius: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
}

.city-dropdown svg[b-7z3x1fznhe] {
    transition: transform 0.2s;
}

.city-dropdown svg.rotated[b-7z3x1fznhe] {
    transform: rotate(180deg);
}

/* Dropdown Overlay */
.dropdown-overlay[b-7z3x1fznhe] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 99;
}

/* City Dropdown Panel */
.city-dropdown-panel[b-7z3x1fznhe] {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    background: #0B1C35;
    border-radius: 16px;
    padding: 8px 0;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown-item[b-7z3x1fznhe] {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    text-align: right;
    direction: rtl;
}

.dropdown-item span[b-7z3x1fznhe] {
    flex: 1;
}

.dropdown-item:hover[b-7z3x1fznhe] {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item.selected[b-7z3x1fznhe] {
    color: #10B981;
}

.radio-circle[b-7z3x1fznhe] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: relative;
}

.radio-circle.checked[b-7z3x1fznhe] {
    border-color: #10B981;
    background: #10B981;
}

.radio-circle.checked[b-7z3x1fznhe]::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

/* Content Area */
.content-area[b-7z3x1fznhe] {
    flex: 1;
    min-height: 0;
    padding: 16px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Stats Bar */
.stats-bar[b-7z3x1fznhe] {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
}

.stat-item[b-7z3x1fznhe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value-row[b-7z3x1fznhe] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-value[b-7z3x1fznhe] {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.stat-icon-svg[b-7z3x1fznhe] {
    color: #ffffff;
    flex-shrink: 0;
}

.stat-currency[b-7z3x1fznhe] {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.stat-label[b-7z3x1fznhe] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Cards */
.card[b-7z3x1fznhe] {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(21, 34, 56, 0.9) 100%);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header[b-7z3x1fznhe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
    gap: 4px;
}

.card-title[b-7z3x1fznhe] {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.card-date[b-7z3x1fznhe] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.card-content[b-7z3x1fznhe] {
    margin-bottom: 16px;
}

.card-content.centered[b-7z3x1fznhe] {
    text-align: center;
}

.card-actions[b-7z3x1fznhe] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.card-actions.centered[b-7z3x1fznhe] {
    justify-content: center;
}

.loading-state[b-7z3x1fznhe] {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Payment Card */
.payment-card .payment-amount[b-7z3x1fznhe] {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.payment-card .amount[b-7z3x1fznhe] {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

.payment-card .currency[b-7z3x1fznhe] {
    font-size: 16px;
    color: #ffffff;
}

.payment-card .payment-label[b-7z3x1fznhe] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Entries Card */
.entries-list[b-7z3x1fznhe] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.entry-item[b-7z3x1fznhe] {
    display: flex;
    align-items: center;
    gap: 12px;
    direction: rtl;
}

.entry-avatar[b-7z3x1fznhe] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    flex-shrink: 0;
}

.entry-info[b-7z3x1fznhe] {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.entry-name[b-7z3x1fznhe] {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.entry-address[b-7z3x1fznhe] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.entry-time[b-7z3x1fznhe] {
    text-align: left;
    direction: ltr;
}

.entry-time-main[b-7z3x1fznhe] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Legacy styles - keep for compatibility */
.entry-details[b-7z3x1fznhe] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.entry-id[b-7z3x1fznhe] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.entry-profession[b-7z3x1fznhe] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    min-width: 80px;
    text-align: end;
}

/* Addresses Card */
.addresses-list[b-7z3x1fznhe] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.address-item[b-7z3x1fznhe] {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    direction: rtl;
    cursor: pointer;
    padding: 12px;
    margin: 0;
    border-radius: 12px;
    transition: background 0.2s;
}

.address-item:hover[b-7z3x1fznhe] {
    background: rgba(255, 255, 255, 0.05);
}

.address-info[b-7z3x1fznhe] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.address-distance[b-7z3x1fznhe] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.address-city[b-7z3x1fznhe] {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.address-details[b-7z3x1fznhe] {
    display: flex;
    flex-direction: column;
}

.address-name[b-7z3x1fznhe] {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    text-align: right;
}

.address-street[b-7z3x1fznhe] {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}

.address-map[b-7z3x1fznhe] {
    width: 144px;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.address-map img[b-7z3x1fznhe] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn[b-7z3x1fznhe] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-outline[b-7z3x1fznhe] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-outline:hover[b-7z3x1fznhe] {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary[b-7z3x1fznhe] {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
}

.btn-primary:hover[b-7z3x1fznhe] {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.btn-icon[b-7z3x1fznhe] {
    font-size: 14px;
}

/* Empty State */
.empty-state[b-7z3x1fznhe] {
    text-align: center;
    padding: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* RTL Adjustments */
[b-7z3x1fznhe] [dir="rtl"] .entry-profession {
    text-align: start;
}

[b-7z3x1fznhe] [dir="rtl"] .btn-icon {
    transform: scaleX(-1);
}
/* /Pages/Payments/Index.razor.rz.scp.css */
/* Payment History Page */

.payments-page[b-qi9yu9ijbs] {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Header Section - Dark Background */
.header-section[b-qi9yu9ijbs] {
    flex-shrink: 0;
    padding: 16px 20px;
    background: #1A3A6B;
}

/* Filter Row */
.filter-row[b-qi9yu9ijbs] {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.search-icon[b-qi9yu9ijbs] {
    width: 40px;
    height: 40px;
    background: #0B1C35BF;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.city-dropdown[b-qi9yu9ijbs] {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #0B1C35BF;
    padding: 12px 16px;
    border-radius: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
}

.city-dropdown svg[b-qi9yu9ijbs] {
    transition: transform 0.2s;
}

.city-dropdown svg.rotated[b-qi9yu9ijbs] {
    transform: rotate(180deg);
}

/* Search Input Mode */
.search-input-container[b-qi9yu9ijbs] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0B1C35BF;
    padding: 10px 16px;
    border-radius: 10px;
    animation: expandSearch-b-qi9yu9ijbs 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    overflow: hidden;
}

@keyframes expandSearch-b-qi9yu9ijbs {
    0% {
        flex: 0 0 40px;
        max-width: 40px;
    }
    100% {
        flex: 1;
        max-width: 100%;
    }
}

.search-input-container .search-input[b-qi9yu9ijbs] {
    animation: fadeInContent-b-qi9yu9ijbs 0.3s ease 0.2s forwards;
    opacity: 0;
}

.search-input-container .search-close-btn[b-qi9yu9ijbs] {
    animation: fadeInContent-b-qi9yu9ijbs 0.3s ease 0.25s forwards;
    opacity: 0;
}

@keyframes fadeInContent-b-qi9yu9ijbs {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Search closing animation */
.search-input-container.closing[b-qi9yu9ijbs] {
    animation: shrinkSearch-b-qi9yu9ijbs 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.search-input-container.closing .search-input[b-qi9yu9ijbs],
.search-input-container.closing .search-close-btn[b-qi9yu9ijbs] {
    animation: fadeOutContent-b-qi9yu9ijbs 0.15s ease forwards;
}

@keyframes shrinkSearch-b-qi9yu9ijbs {
    0% {
        flex: 1;
        max-width: 100%;
    }
    100% {
        flex: 0 0 40px;
        max-width: 40px;
    }
}

@keyframes fadeOutContent-b-qi9yu9ijbs {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.search-input[b-qi9yu9ijbs] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    direction: rtl;
    text-align: right;
}

.search-input[b-qi9yu9ijbs]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-close-btn[b-qi9yu9ijbs] {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.search-close-btn:hover[b-qi9yu9ijbs] {
    transform: scale(1.1);
}

/* Dropdown Overlay */
.dropdown-overlay[b-qi9yu9ijbs] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 99;
}

/* City Dropdown Panel */
.city-dropdown-panel[b-qi9yu9ijbs] {
    position: absolute;
    top: 120px;
    left: 20px;
    right: 20px;
    background: linear-gradient(180deg, #1a2744 0%, #0f1829 100%);
    border-radius: 20px;
    padding: 8px 0;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown-item[b-qi9yu9ijbs] {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    text-align: right;
    direction: rtl;
}

.dropdown-item span[b-qi9yu9ijbs] {
    flex: 1;
}

.dropdown-item:hover[b-qi9yu9ijbs] {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item.selected[b-qi9yu9ijbs] {
    color: #10B981;
}

.radio-circle[b-qi9yu9ijbs] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: relative;
}

.radio-circle.checked[b-qi9yu9ijbs] {
    border-color: #10B981;
    background: #10B981;
}

.radio-circle.checked[b-qi9yu9ijbs]::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

.checkbox-circle[b-qi9yu9ijbs] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: relative;
}

.checkbox-circle.checked[b-qi9yu9ijbs] {
    border-color: #10B981;
    background: #10B981;
}

.checkbox-circle.checked[b-qi9yu9ijbs]::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

/* Content Area - White Background */
.content[b-qi9yu9ijbs] {
    flex: 1;
    min-height: 0;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 20px;
    padding-bottom: 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Date Filter */
.date-filter-container[b-qi9yu9ijbs] {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.date-filter[b-qi9yu9ijbs] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.date-filter svg[b-qi9yu9ijbs] {
    transition: transform 0.2s;
}

.date-filter svg.rotated[b-qi9yu9ijbs] {
    transform: rotate(180deg);
}

/* Date Dropdown Panel */
.date-dropdown-panel[b-qi9yu9ijbs] {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #1a2744 0%, #0f1829 100%);
    border-radius: 16px;
    padding: 12px 0;
    z-index: 100;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.date-option[b-qi9yu9ijbs] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
}

.date-option:hover[b-qi9yu9ijbs] {
    background: rgba(255, 255, 255, 0.05);
}

.date-option.selected[b-qi9yu9ijbs] {
    color: #10B981;
}

.checkmark[b-qi9yu9ijbs] {
    color: #10B981;
    font-size: 16px;
}

.date-range-display[b-qi9yu9ijbs] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #10B981;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
}

/* Payments List */
.payments-list[b-qi9yu9ijbs] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.payment-item[b-qi9yu9ijbs] {
    display: flex;
    align-items: center;
    padding: 16px 0;
    direction: rtl;
    border-bottom: 1px solid #f3f4f6;
}

.payment-item:last-child[b-qi9yu9ijbs] {
    border-bottom: none;
}

/* RIGHT: Payment Icon */
.payment-icon[b-qi9yu9ijbs] {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-icon img[b-qi9yu9ijbs] {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* MIDDLE: Description + City (takes remaining space) */
.payment-info[b-qi9yu9ijbs] {
    flex: 1;
    text-align: right;
    padding: 0 12px;
}

.payment-method-name[b-qi9yu9ijbs] {
    font-size: 15px;
    font-weight: 500;
    color: #2B3E5F;
}

.payment-city[b-qi9yu9ijbs] {
    font-size: 13px;
    color: #9CA3AF;
}

/* MIDDLE: Sum Paid */
.payment-amount[b-qi9yu9ijbs] {
    font-size: 15px;
    font-weight: 600;
    color: #2B3E5F;
    padding: 0 12px;
    white-space: nowrap;
}

/* Date/Time */
.payment-datetime[b-qi9yu9ijbs] {
    min-width: 100px;
    text-align: left;
    direction: ltr;
    padding: 0 12px;
}

.payment-date[b-qi9yu9ijbs] {
    font-size: 14px;
    font-weight: 600;
    color: #2B3E5F;
}

.payment-time[b-qi9yu9ijbs] {
    font-size: 13px;
    color: #9CA3AF;
}

/* LEFT: Download Icon */
.download-icon[b-qi9yu9ijbs] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.download-icon svg[b-qi9yu9ijbs] {
    transition: color 0.2s;
}

.download-icon:hover svg[b-qi9yu9ijbs] {
    stroke: #10B981;
}

/* Loading & Empty States */
.loading[b-qi9yu9ijbs], .empty-state[b-qi9yu9ijbs] {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* Modal Overlay */
.modal-overlay[b-qi9yu9ijbs] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
}

/* Date Range Modal - New Design */
.date-range-modal[b-qi9yu9ijbs] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    width: 90%;
    max-width: 340px;
    z-index: 201;
    animation: fadeInModal-b-qi9yu9ijbs 0.25s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInModal-b-qi9yu9ijbs {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-close[b-qi9yu9ijbs] {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-range-modal h3[b-qi9yu9ijbs] {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #2B3E5F;
    margin-bottom: 24px;
    margin-top: 8px;
}

.date-selector-group[b-qi9yu9ijbs] {
    margin-bottom: 20px;
}

.date-selector-group label[b-qi9yu9ijbs] {
    display: block;
    text-align: right;
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 8px;
}

.date-selector-row[b-qi9yu9ijbs] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-nav-btn[b-qi9yu9ijbs] {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.date-nav-btn:hover[b-qi9yu9ijbs] {
    background: #f3f4f6;
}

.date-display[b-qi9yu9ijbs] {
    flex: 1;
    height: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: #1A3A6B;
    cursor: pointer;
    transition: border-color 0.2s;
}

.date-display:hover[b-qi9yu9ijbs] {
    border-color: #1A3A6B;
}

.date-display.placeholder[b-qi9yu9ijbs] {
    color: #10B981;
    font-weight: 400;
}

.modal-buttons[b-qi9yu9ijbs] {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-clear[b-qi9yu9ijbs], .btn-apply[b-qi9yu9ijbs] {
    flex: 1;
    height: 48px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.btn-clear:hover[b-qi9yu9ijbs], .btn-apply:hover[b-qi9yu9ijbs] {
    opacity: 0.9;
}

.btn-clear[b-qi9yu9ijbs] {
    background: #1A3A6B;
    color: #fff;
}

.btn-apply[b-qi9yu9ijbs] {
    background: #10B981;
    color: #fff;
}

/* Calendar Modal */
.calendar-modal[b-qi9yu9ijbs] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 340px;
    z-index: 202;
    animation: fadeInModal-b-qi9yu9ijbs 0.25s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.calendar-header[b-qi9yu9ijbs] {
    background: #10B981;
    padding: 20px;
    color: #fff;
    position: relative;
}

.calendar-header-label[b-qi9yu9ijbs] {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.calendar-selected-date[b-qi9yu9ijbs] {
    font-size: 28px;
    font-weight: 400;
}

.calendar-edit-btn[b-qi9yu9ijbs] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.8;
}

.calendar-body[b-qi9yu9ijbs] {
    padding: 16px;
}

.calendar-month-nav[b-qi9yu9ijbs] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.month-year-display[b-qi9yu9ijbs] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.month-nav-buttons[b-qi9yu9ijbs] {
    display: flex;
    gap: 8px;
}

.month-nav-buttons button[b-qi9yu9ijbs] {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.month-nav-buttons button:hover[b-qi9yu9ijbs] {
    background: #f3f4f6;
}

.calendar-weekdays[b-qi9yu9ijbs] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}

.calendar-weekdays span[b-qi9yu9ijbs] {
    font-size: 13px;
    color: #9CA3AF;
    padding: 8px 0;
}

.calendar-days[b-qi9yu9ijbs] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day[b-qi9yu9ijbs] {
    width: 100%;
    aspect-ratio: 1;
    border: none;
    background: transparent;
    border-radius: 50%;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover:not(:disabled)[b-qi9yu9ijbs] {
    background: #f3f4f6;
}

.calendar-day.other-month[b-qi9yu9ijbs] {
    color: #d1d5db;
}

.calendar-day.today[b-qi9yu9ijbs] {
    border: 1px solid #333;
}

.calendar-day.selected[b-qi9yu9ijbs] {
    background: #10B981 !important;
    color: #fff !important;
    border: none !important;
}

.calendar-day:disabled[b-qi9yu9ijbs] {
    cursor: default;
}

.calendar-actions[b-qi9yu9ijbs] {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.calendar-cancel[b-qi9yu9ijbs], .calendar-ok[b-qi9yu9ijbs] {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
}

.calendar-cancel[b-qi9yu9ijbs] {
    color: #10B981;
}

.calendar-ok[b-qi9yu9ijbs] {
    color: #10B981;
}

.calendar-cancel:hover[b-qi9yu9ijbs], .calendar-ok:hover[b-qi9yu9ijbs] {
    background: rgba(16, 185, 129, 0.1);
}
/* /Pages/Payment/Index.razor.rz.scp.css */
/* Payment Page */
.payment-page[b-ebq4ds3ak0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
}

/* Loading / Redirecting State */
.payment-loading[b-ebq4ds3ak0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.loading-spinner[b-ebq4ds3ak0] {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: #60a5fa;
    border-radius: 50%;
    animation: spin-b-ebq4ds3ak0 0.8s linear infinite;
}

.loading-spinner.large[b-ebq4ds3ak0] {
    width: 48px;
    height: 48px;
    border-width: 4px;
}

@keyframes spin-b-ebq4ds3ak0 {
    to { transform: rotate(360deg); }
}

/* Verifying / Processing State */
.payment-processing[b-ebq4ds3ak0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 40px 20px;
    color: #ffffff;
}

.payment-processing h2[b-ebq4ds3ak0] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.payment-processing p[b-ebq4ds3ak0] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.processing-animation[b-ebq4ds3ak0] {
    margin-bottom: 8px;
}

/* Result States (Success / Failed) */
.payment-result[b-ebq4ds3ak0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 40px 24px;
    max-width: 360px;
    width: 100%;
}

.result-icon[b-ebq4ds3ak0] {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon[b-ebq4ds3ak0] {
    background: rgba(16, 185, 129, 0.15);
}

.failed-icon[b-ebq4ds3ak0] {
    background: rgba(239, 68, 68, 0.15);
}

.payment-result h2[b-ebq4ds3ak0] {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.payment-result p[b-ebq4ds3ak0] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

/* Result Details */
.result-details[b-ebq4ds3ak0] {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-row[b-ebq4ds3ak0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-label[b-ebq4ds3ak0] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.result-value[b-ebq4ds3ak0] {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

/* Result Buttons */
.result-buttons[b-ebq4ds3ak0] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.result-btn[b-ebq4ds3ak0] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.success-btn[b-ebq4ds3ak0] {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.success-btn:hover[b-ebq4ds3ak0] {
    background: linear-gradient(135deg, #059669, #047857);
}

.retry-btn[b-ebq4ds3ak0] {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.retry-btn:hover[b-ebq4ds3ak0] {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.secondary-btn[b-ebq4ds3ak0] {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.secondary-btn:hover[b-ebq4ds3ak0] {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}
