/* _content/package-tracker-landing/Components/CarrierDropdown.razor.rz.scp.css */
.carrier-wrapper[b-09h8eb05kv] {
    position: relative;
    outline: none;
}

/* tracker-input lives inside this component so Home.razor.css scoping won't reach it */
.tracker-input[b-09h8eb05kv] {
    background: rgba(11, 18, 32, 0.7);
    border: 1px solid #24324d;
    border-radius: 10px;
    color: #f3f7ff;
    font-size: 0.9375rem;
    padding: 0.65rem 0.875rem;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}

.tracker-input[b-09h8eb05kv]::placeholder {
    color: rgba(159, 176, 208, 0.45);
}

.tracker-input:focus[b-09h8eb05kv] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    background: rgba(17, 26, 46, 0.95);
}

.carrier-list[b-09h8eb05kv] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #111e36;
    border: 1px solid #2c3f5e;
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.12);
    max-height: 220px;
    overflow-y: auto;
    z-index: 999;
    scrollbar-width: thin;
    scrollbar-color: #2c3f5e transparent;
}

.carrier-list[b-09h8eb05kv]::-webkit-scrollbar {
    width: 4px;
}

.carrier-list[b-09h8eb05kv]::-webkit-scrollbar-track {
    background: transparent;
}

.carrier-list[b-09h8eb05kv]::-webkit-scrollbar-thumb {
    background: #2c3f5e;
    border-radius: 2px;
}

.carrier-item[b-09h8eb05kv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.875rem;
    cursor: pointer;
    transition: background 0.1s ease;
    gap: 0.5rem;
}

.carrier-item:first-child[b-09h8eb05kv] {
    border-radius: 10px 10px 0 0;
}

.carrier-item:last-child[b-09h8eb05kv] {
    border-radius: 0 0 10px 10px;
}

.carrier-item:hover[b-09h8eb05kv] {
    background: rgba(59, 130, 246, 0.14);
}

.carrier-item-name[b-09h8eb05kv] {
    font-size: 0.875rem;
    color: #e2eaf8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.carrier-item-iso[b-09h8eb05kv] {
    font-size: 0.7rem;
    font-weight: 600;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 4px;
    padding: 1px 5px;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.carrier-empty[b-09h8eb05kv] {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
    color: #9fb0d0;
    text-align: center;
}

.carrier-hint[b-09h8eb05kv] {
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
    color: #60a5fa;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
/* _content/package-tracker-landing/Components/CookieConsentBanner.razor.rz.scp.css */
/* Modal Overlay */
.cookie-consent-overlay[b-xyw967ud0q] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    animation: fadeIn-b-xyw967ud0q 0.3s ease-out;
}

@keyframes fadeIn-b-xyw967ud0q {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Box */
.cookie-consent-modal[b-xyw967ud0q] {
    background: linear-gradient(135deg, #162033 0%, #111a2e 100%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    animation: slideIn-b-xyw967ud0q 0.4s ease-out;
    border: 1px solid #24324d;
}

@keyframes slideIn-b-xyw967ud0q {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Modal Header */
.cookie-consent-header[b-xyw967ud0q] {
    background: linear-gradient(135deg, #0b1220 0%, #111a2e 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 3px solid #3b82f6;
}

.cookie-icon[b-xyw967ud0q] {
    font-size: 2rem;
    color: #3b82f6;
}

.cookie-consent-header h3[b-xyw967ud0q] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Modal Body */
.cookie-consent-body[b-xyw967ud0q] {
    padding: 2rem;
}

.cookie-consent-body p[b-xyw967ud0q] {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #9fb0d0;
}

.cookie-consent-body p:last-child[b-xyw967ud0q] {
    margin-bottom: 0;
}

.cookie-consent-privacy[b-xyw967ud0q] {
    margin-top: 1.5rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid #24324d;
}

.cookie-policy-link[b-xyw967ud0q] {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cookie-policy-link:hover[b-xyw967ud0q] {
    color: #3b82f6;
    gap: 0.75rem;
}

.cookie-policy-link i[b-xyw967ud0q] {
    font-size: 0.9rem;
}

/* Modal Footer */
.cookie-consent-footer[b-xyw967ud0q] {
    padding: 1.5rem 2rem;
    background: #111a2e;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 1px solid #24324d;
}

/* Buttons */
.cookie-consent-footer button[b-xyw967ud0q] {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.btn-reject[b-xyw967ud0q] {
    background: #162033;
    color: #9fb0d0;
    border: 2px solid #24324d;
}

.btn-reject:hover[b-xyw967ud0q] {
    background: #111a2e;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-accept[b-xyw967ud0q] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-accept:hover[b-xyw967ud0q] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-accept:active[b-xyw967ud0q],
.btn-reject:active[b-xyw967ud0q] {
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-consent-overlay[b-xyw967ud0q] {
        padding: 1rem;
    }

    .cookie-consent-modal[b-xyw967ud0q] {
        max-width: 100%;
    }

    .cookie-consent-header[b-xyw967ud0q] {
        padding: 1.25rem;
    }

    .cookie-icon[b-xyw967ud0q] {
        font-size: 1.5rem;
    }

    .cookie-consent-header h3[b-xyw967ud0q] {
        font-size: 1.25rem;
    }

    .cookie-consent-body[b-xyw967ud0q] {
        padding: 1.5rem;
    }

    .cookie-consent-body p[b-xyw967ud0q] {
        font-size: 0.9375rem;
    }

    .cookie-consent-footer[b-xyw967ud0q] {
        padding: 1.25rem 1.5rem;
        flex-direction: column-reverse;
    }

    .cookie-consent-footer button[b-xyw967ud0q] {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent-header[b-xyw967ud0q] {
        padding: 1rem;
    }

    .cookie-consent-header h3[b-xyw967ud0q] {
        font-size: 1.125rem;
    }

    .cookie-consent-body[b-xyw967ud0q] {
        padding: 1.25rem;
    }

    .cookie-consent-body p[b-xyw967ud0q] {
        font-size: 0.875rem;
    }

    .cookie-consent-footer[b-xyw967ud0q] {
        padding: 1rem 1.25rem;
    }
}
/* _content/package-tracker-landing/Components/Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Styles */
.main-layout[b-b8u9kc3bfl] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header[b-b8u9kc3bfl] {
    background: rgba(17, 26, 46, 0.72);
    border: 1px solid rgba(47, 66, 102, 0.65);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    padding: 14px 18px;
    position: relative;
    z-index: 1000;
}

.header-content[b-b8u9kc3bfl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
}

.logo[b-b8u9kc3bfl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover[b-b8u9kc3bfl] {
    opacity: 0.8;
}

.logo-img[b-b8u9kc3bfl] {
    width: 2rem;
    height: 2rem;
    border-radius: 0.375rem;
}

.logo-text[b-b8u9kc3bfl] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3b82f6;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle[b-b8u9kc3bfl] {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span[b-b8u9kc3bfl] {
    width: 100%;
    height: 2px;
    background: #9fb0d0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1)[b-b8u9kc3bfl] {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2)[b-b8u9kc3bfl] {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3)[b-b8u9kc3bfl] {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation */
.desktop-nav[b-b8u9kc3bfl] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Mobile Navigation */
.mobile-nav[b-b8u9kc3bfl] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(22, 32, 51, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(47, 66, 102, 0.5);
    border-radius: 12px;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    z-index: 1000;
}

.mobile-nav.active[b-b8u9kc3bfl] {
    display: flex;
}

.nav-link[b-b8u9kc3bfl] {
    color: #9fb0d0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

.nav-link:hover[b-b8u9kc3bfl] {
    color: #3b82f6;
}

.bullet-link[b-b8u9kc3bfl] {
    color: #9fb0d0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    padding-left: 1.25rem;
}

.bullet-link[b-b8u9kc3bfl]::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.bullet-link:hover[b-b8u9kc3bfl] {
    color: #3b82f6;
}

.mobile-nav .nav-link[b-b8u9kc3bfl] {
    text-align: center;
    border-bottom: 1px solid #24324d;
    padding: 0.75rem 0;
}

.mobile-nav .nav-link:last-child[b-b8u9kc3bfl] {
    border-bottom: none;
}

.main-content[b-b8u9kc3bfl] {
    flex: 1;
}

.footer[b-b8u9kc3bfl] {
    background: rgba(17, 26, 46, 0.8);
    border-top: 1px solid rgba(47, 66, 102, 0.4);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content[b-b8u9kc3bfl] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .footer-content[b-b8u9kc3bfl] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content[b-b8u9kc3bfl] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-section h4[b-b8u9kc3bfl],
.footer-section h5[b-b8u9kc3bfl] {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul[b-b8u9kc3bfl] {
    list-style: none;
    padding: 0;
}

.footer-section ul li[b-b8u9kc3bfl] {
    margin-bottom: 0.5rem;
}

.footer-section a[b-b8u9kc3bfl] {
    color: #9fb0d0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover[b-b8u9kc3bfl] {
    color: #3b82f6;
}

.footer-bottom[b-b8u9kc3bfl] {
    border-top: 1px solid #24324d;
    padding-top: 1rem;
    text-align: center;
    color: #9fb0d0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content[b-b8u9kc3bfl] {
        padding: 0.5rem 0;
    }
    
    .logo[b-b8u9kc3bfl] {
        gap: 0.375rem;
    }
    
    .logo-img[b-b8u9kc3bfl] {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .logo-text[b-b8u9kc3bfl] {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle[b-b8u9kc3bfl] {
        display: flex;
    }
    
    .desktop-nav[b-b8u9kc3bfl] {
        display: none;
    }
    
    .mobile-nav[b-b8u9kc3bfl] {
        display: none;
    }
    
    .mobile-nav.active[b-b8u9kc3bfl] {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-content[b-b8u9kc3bfl] {
        padding: 0.375rem 0;
    }
    
    .logo-text[b-b8u9kc3bfl] {
        font-size: 0.875rem;
    }
    
    .mobile-nav[b-b8u9kc3bfl] {
        padding: 0.75rem;
    }
    
    .mobile-nav .nav-link[b-b8u9kc3bfl] {
        padding: 0.5rem 0;
        font-size: 0.875rem;
    }
}

/* Logout Button Styles */
.logout-btn[b-b8u9kc3bfl] {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
/* _content/package-tracker-landing/Components/NavigationMenu.razor.rz.scp.css */
/* Navigation Menu Styles */
.header[b-i41gdldlzx] {
    background: rgba(17, 26, 46, 0.72);
    border: 1px solid rgba(47, 66, 102, 0.65);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    padding: 14px 18px;
    position: relative;
    z-index: 1000;
}

.header-content[b-i41gdldlzx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
}

.logo[b-i41gdldlzx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover[b-i41gdldlzx] {
    opacity: 0.8;
}

.logo-img[b-i41gdldlzx] {
    width: 2rem;
    height: 2rem;
    border-radius: 0.375rem;
}

.logo-text[b-i41gdldlzx] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3b82f6;
}

.nav-skeleton[b-i41gdldlzx] {
    gap: 1.5rem;
}

.skeleton-bar[b-i41gdldlzx] {
    height: 0.875rem;
    width: 52px;
    border-radius: 0.5rem;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: shimmer-b-i41gdldlzx 1.4s infinite;
}

.skeleton-bar--wide[b-i41gdldlzx] {
    width: 80px;
}

@keyframes shimmer-b-i41gdldlzx {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.nav-signup-hidden[b-i41gdldlzx] {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle[b-i41gdldlzx] {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span[b-i41gdldlzx] {
    width: 100%;
    height: 2px;
    background: #9fb0d0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1)[b-i41gdldlzx] {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2)[b-i41gdldlzx] {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3)[b-i41gdldlzx] {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation */
.desktop-nav[b-i41gdldlzx] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Mobile Navigation */
.mobile-nav[b-i41gdldlzx] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(22, 32, 51, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(47, 66, 102, 0.5);
    border-radius: 12px;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    z-index: 1000;
}

.mobile-nav.active[b-i41gdldlzx] {
    display: flex;
}

.nav-link[b-i41gdldlzx] {
    color: #9fb0d0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

.nav-link:hover[b-i41gdldlzx] {
    color: #3b82f6;
}

.bullet-link[b-i41gdldlzx] {
    color: #9fb0d0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    padding-left: 1.25rem;
}

.bullet-link[b-i41gdldlzx]::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.bullet-link:hover[b-i41gdldlzx] {
    color: #3b82f6;
}

.mobile-nav .nav-link[b-i41gdldlzx] {
    text-align: center;
    border-bottom: 1px solid #24324d;
    padding: 0.75rem 0;
}

.mobile-nav .nav-link:last-child[b-i41gdldlzx] {
    border-bottom: none;
}

/* Logout Button Styles */
.logout-btn[b-i41gdldlzx] {
    background: none;
    border: none;
    cursor: pointer;
    color: #9fb0d0;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    vertical-align: middle;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
}

.logout-btn:hover[b-i41gdldlzx] {
    color: #3b82f6;
}

.desktop-nav .logout-btn[b-i41gdldlzx] {
    padding-left: 1.25rem;
}

/* Button Styles */
.btn[b-i41gdldlzx] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    justify-content: center;
}

.btn-primary[b-i41gdldlzx] {
    background: linear-gradient(180deg, #4a90ff 0%, #2563eb 100%);
    color: #FFFFFF;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover[b-i41gdldlzx] {
    background: linear-gradient(180deg, #5aa0ff 0%, #2f6ef0 100%);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content[b-i41gdldlzx] {
        padding: 0.5rem 0;
    }
    
    .logo[b-i41gdldlzx] {
        gap: 0.375rem;
    }
    
    .logo-img[b-i41gdldlzx] {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .logo-text[b-i41gdldlzx] {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle[b-i41gdldlzx] {
        display: flex;
    }
    
    .desktop-nav[b-i41gdldlzx] {
        display: none;
    }
    
    .mobile-nav[b-i41gdldlzx] {
        display: none;
    }
    
    .mobile-nav.active[b-i41gdldlzx] {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-content[b-i41gdldlzx] {
        padding: 0.375rem 0;
    }
    
    .logo-text[b-i41gdldlzx] {
        font-size: 0.875rem;
    }
    
    .mobile-nav[b-i41gdldlzx] {
        padding: 0.75rem;
    }
    
    .mobile-nav .nav-link[b-i41gdldlzx] {
        padding: 0.5rem 0;
        font-size: 0.875rem;
    }
}
/* _content/package-tracker-landing/Components/NotFoundModal.razor.rz.scp.css */
.not-found-overlay[b-en651mh35p] {
    position: fixed;
    inset: 0;
    background: rgba(6, 11, 24, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
    animation: not-found-fade-in-b-en651mh35p 0.25s ease;
}

@keyframes not-found-fade-in-b-en651mh35p {
    from { opacity: 0; }
    to { opacity: 1; }
}

.not-found-modal[b-en651mh35p] {
    background: linear-gradient(165deg, #162033 0%, #111a2e 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: not-found-scale-in-b-en651mh35p 0.3s ease;
}

@keyframes not-found-scale-in-b-en651mh35p {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.not-found-icon[b-en651mh35p] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-found-icon i[b-en651mh35p] {
    font-size: 1.75rem;
    color: var(--accent, #60a5fa);
}

.not-found-title[b-en651mh35p] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #f3f7ff);
    margin: 0 0 0.75rem;
}

.not-found-message[b-en651mh35p] {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted, #9fb0d0);
    margin: 0 0 1.5rem;
}

.not-found-close[b-en651mh35p] {
    min-width: 160px;
}
/* _content/package-tracker-landing/Components/Pages/Blog.razor.rz.scp.css */
.blog-page[b-3hs7m7iwdh] {
    background: #F9FAFB;
    min-height: calc(100vh - 300px);
    padding: 4rem 0;
}

.blog-header[b-3hs7m7iwdh] {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-title[b-3hs7m7iwdh] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 0.75rem 0;
}

.blog-subtitle[b-3hs7m7iwdh] {
    font-size: 1.125rem;
    color: #6B7280;
    margin: 0;
}

.blog-grid[b-3hs7m7iwdh] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .blog-grid[b-3hs7m7iwdh] { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .blog-grid[b-3hs7m7iwdh] { grid-template-columns: 1fr; }
}

.blog-card[b-3hs7m7iwdh] {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover[b-3hs7m7iwdh] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.blog-card-image[b-3hs7m7iwdh] {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #F3F4F6;
}

.blog-card-image img[b-3hs7m7iwdh] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body[b-3hs7m7iwdh] {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date[b-3hs7m7iwdh] {
    font-size: 0.8125rem;
    color: #9CA3AF;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-card-title[b-3hs7m7iwdh] {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 0.625rem 0;
    line-height: 1.4;
}

.blog-card-excerpt[b-3hs7m7iwdh] {
    font-size: 0.9375rem;
    color: #6B7280;
    margin: 0 0 1rem 0;
    line-height: 1.55;
    flex: 1;
}

.blog-card-read-more[b-3hs7m7iwdh] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4F46E5;
}
/* _content/package-tracker-landing/Components/Pages/BlogArticle.razor.rz.scp.css */
.blog-notfound-page[b-kbj8gam67h] {
    background: #F9FAFB;
    min-height: calc(100vh - 300px);
    padding: 6rem 0;
    display: flex;
    align-items: center;
}

.blog-notfound-card[b-kbj8gam67h] {
    background: white;
    border-radius: 0.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.blog-notfound-icon[b-kbj8gam67h] {
    font-size: 3rem;
    margin: 0 0 1rem 0;
}

.blog-notfound-title[b-kbj8gam67h] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 0.75rem 0;
}

.blog-notfound-message[b-kbj8gam67h] {
    color: #6B7280;
    margin: 0 0 1.5rem 0;
}

.blog-notfound-back[b-kbj8gam67h] {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 600;
}

.blog-notfound-back:hover[b-kbj8gam67h] {
    text-decoration: underline;
}
/* _content/package-tracker-landing/Components/Pages/BlogPosts/BlogArticleLayout.razor.rz.scp.css */
.blog-article-page[b-p986y04nqp] {
    background: #F9FAFB;
    min-height: calc(100vh - 300px);
    padding: 4rem 0;
}

.blog-article[b-p986y04nqp] {
    background: white;
    border-radius: 0.5rem;
    padding: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: min(92vw, 54rem);
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 640px) {
    .blog-article[b-p986y04nqp] { padding: 1.5rem; }
}

.blog-article-header[b-p986y04nqp] { margin: 0 0 1.5rem 0; text-align: left; }

.blog-article-title[b-p986y04nqp] { font-size: 2rem; font-weight: 700; color: #1F2937; margin: 0 0 0.5rem 0; line-height: 1.3; text-align: left; }

.blog-article-date[b-p986y04nqp] { font-size: 0.875rem; color: #9CA3AF; margin: 0; display: block; }

.blog-article-body[b-p986y04nqp] { color: #374151; line-height: 1.6; margin: 0; padding: 0; text-align: left; max-width: 100%; overflow: hidden; }

.blog-article-body > *:first-child[b-p986y04nqp] { margin-top: 0; }

.blog-article-back[b-p986y04nqp] { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #E5E7EB; }

.blog-article-back a[b-p986y04nqp] { color: #4F46E5; text-decoration: none; }

.blog-article-back a:hover[b-p986y04nqp] { text-decoration: underline; }
/* _content/package-tracker-landing/Components/Pages/ContactUs.razor.rz.scp.css */
/* Authentication Pages Styles */
.auth-container[b-j28rq3ykf1] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.auth-container *[b-j28rq3ykf1] {
    box-sizing: border-box;
}

.auth-container[b-j28rq3ykf1]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.auth-card[b-j28rq3ykf1] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.contact-card[b-j28rq3ykf1] {
    max-width: 500px;
}

.auth-header[b-j28rq3ykf1] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title[b-j28rq3ykf1] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-j28rq3ykf1] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.form-group[b-j28rq3ykf1] {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-label[b-j28rq3ykf1] {
    display: block;
    font-weight: 600;
    color: #9fb0d0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input[b-j28rq3ykf1],
input[type="email"][b-j28rq3ykf1],
input[type="password"][b-j28rq3ykf1],
input[type="text"][b-j28rq3ykf1] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

.form-input:focus[b-j28rq3ykf1],
input[type="email"]:focus[b-j28rq3ykf1],
input[type="password"]:focus[b-j28rq3ykf1],
input[type="text"]:focus[b-j28rq3ykf1] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input[b-j28rq3ykf1]::placeholder,
input[type="email"][b-j28rq3ykf1]::placeholder,
input[type="password"][b-j28rq3ykf1]::placeholder,
input[type="text"][b-j28rq3ykf1]::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

[b-j28rq3ykf1] input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

[b-j28rq3ykf1] input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-j28rq3ykf1] input::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

.form-textarea[b-j28rq3ykf1],
textarea.form-input[b-j28rq3ykf1] {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

[b-j28rq3ykf1] textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
    resize: vertical;
    min-height: 120px;
}

[b-j28rq3ykf1] textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-j28rq3ykf1] textarea::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

[b-j28rq3ykf1] select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
    cursor: pointer;
}

[b-j28rq3ykf1] select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-j28rq3ykf1] select option {
    padding: 0.5rem;
}

.btn-full[b-j28rq3ykf1] {
    width: 100%;
    justify-content: center;
}

.auth-footer[b-j28rq3ykf1] {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.auth-footer p[b-j28rq3ykf1] {
    color: #9fb0d0;
    font-size: 0.875rem;
}

.auth-link[b-j28rq3ykf1] {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-j28rq3ykf1] {
    color: #2563eb;
}

.alert[b-j28rq3ykf1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.alert-error[b-j28rq3ykf1] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #B91C1C;
}

.alert-success[b-j28rq3ykf1] {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #15803D;
}

.alert i[b-j28rq3ykf1] {
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-primary:disabled[b-j28rq3ykf1] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary:disabled:hover[b-j28rq3ykf1] {
    background-color: #3b82f6;
    transform: none;
}

.fa-spinner[b-j28rq3ykf1] {
    animation: spin-b-j28rq3ykf1 1s linear infinite;
}

@keyframes spin-b-j28rq3ykf1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.validation-summary[b-j28rq3ykf1] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #B91C1C;
    font-size: 0.875rem;
}

.validation-summary ul[b-j28rq3ykf1] {
    margin: 0;
    padding-left: 1.25rem;
}

.validation-message[b-j28rq3ykf1] {
    color: #B91C1C;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

@media (max-width: 480px) {
    .auth-card[b-j28rq3ykf1] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-title[b-j28rq3ykf1] {
        font-size: 1.5rem;
    }
    
    .contact-card[b-j28rq3ykf1] {
        padding: 2rem 1.5rem;
    }
}
/* _content/package-tracker-landing/Components/Pages/ForgotPassword.razor.rz.scp.css */
/* Authentication Pages Styles - Reused from Login */
.auth-container[b-jyrz8tyye1] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.auth-container[b-jyrz8tyye1]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.auth-card[b-jyrz8tyye1] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.auth-header[b-jyrz8tyye1] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title[b-jyrz8tyye1] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-jyrz8tyye1] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.form-group[b-jyrz8tyye1] {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-label[b-jyrz8tyye1] {
    display: block;
    font-weight: 600;
    color: #9fb0d0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Form Input Styles - Enhanced for Blazor Components */
.form-input[b-jyrz8tyye1],
input[type="email"][b-jyrz8tyye1],
input[type="password"][b-jyrz8tyye1],
input[type="text"][b-jyrz8tyye1] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

.form-input:focus[b-jyrz8tyye1],
input[type="email"]:focus[b-jyrz8tyye1],
input[type="password"]:focus[b-jyrz8tyye1],
input[type="text"]:focus[b-jyrz8tyye1] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input[b-jyrz8tyye1]::placeholder,
input[type="email"][b-jyrz8tyye1]::placeholder,
input[type="password"][b-jyrz8tyye1]::placeholder,
input[type="text"][b-jyrz8tyye1]::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

/* Specific styling for Blazor InputText components */
[b-jyrz8tyye1] input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

[b-jyrz8tyye1] input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-jyrz8tyye1] input::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

/* Form disabled state */
.form-input:disabled[b-jyrz8tyye1],
input[type="email"]:disabled[b-jyrz8tyye1],
input[type="password"]:disabled[b-jyrz8tyye1],
input[type="text"]:disabled[b-jyrz8tyye1] {
    background-color: #0b1220;
    cursor: not-allowed;
    opacity: 0.6;
}

[b-jyrz8tyye1] input:disabled {
    background-color: #0b1220;
    cursor: not-allowed;
    opacity: 0.6;
}

.password-input-container[b-jyrz8tyye1] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input-container .form-input[b-jyrz8tyye1] {
    padding-right: 3rem;
    width: 100%;
}

.password-toggle[b-jyrz8tyye1] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9fb0d0;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle:hover[b-jyrz8tyye1] {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.15);
}

.password-toggle i[b-jyrz8tyye1] {
    font-size: 1rem;
    pointer-events: none;
}

.btn-full[b-jyrz8tyye1] {
    width: 100%;
    justify-content: center;
}

.btn-primary:disabled[b-jyrz8tyye1] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary:disabled:hover[b-jyrz8tyye1] {
    transform: none;
    box-shadow: none;
}

.auth-footer[b-jyrz8tyye1] {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-footer p[b-jyrz8tyye1] {
    color: #9fb0d0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.auth-link[b-jyrz8tyye1] {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-jyrz8tyye1] {
    color: #2563eb;
}

.alert[b-jyrz8tyye1] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    flex-direction: column;
}

.alert-error[b-jyrz8tyye1] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #B91C1C;
}

.alert-success[b-jyrz8tyye1] {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #15803D;
}

.alert i[b-jyrz8tyye1] {
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.validation-message[b-jyrz8tyye1] {
    color: #B91C1C;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.info-text[b-jyrz8tyye1] {
    font-size: 0.875rem;
    color: #9fb0d0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Success redirect message */
.redirect-message[b-jyrz8tyye1] {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #9fb0d0;
    text-align: center;
}

.fa-spinner[b-jyrz8tyye1] {
    animation: spin-b-jyrz8tyye1 1s linear infinite;
}

@keyframes spin-b-jyrz8tyye1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-card[b-jyrz8tyye1] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-title[b-jyrz8tyye1] {
        font-size: 1.5rem;
    }
}
/* _content/package-tracker-landing/Components/Pages/Home.razor.rz.scp.css */
/* Landing Page Styles */
.landing-page-wrapper[b-o55q9mtx9r] {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #60a5fa;
    --text-dark: #f3f7ff;
    --text-light: #9fb0d0;
    --background-light: #111a2e;
    --white: #162033;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Mobile-first optimizations */
*[b-o55q9mtx9r] {
    box-sizing: border-box;
}

html[b-o55q9mtx9r] {
    scroll-behavior: smooth;
}

body[b-o55q9mtx9r] {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Styles */
.container[b-o55q9mtx9r] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-btn[b-o55q9mtx9r] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.site-btn-primary[b-o55q9mtx9r] {
    background: linear-gradient(180deg, #4a90ff 0%, #2563eb 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.site-btn-primary:hover[b-o55q9mtx9r] {
    background: linear-gradient(180deg, #5aa0ff 0%, #2f6ef0 100%);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.site-btn-outline[b-o55q9mtx9r] {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 10px;
    transition: all 0.15s ease;
}

.site-btn-outline:hover[b-o55q9mtx9r] {
    background: rgba(59, 130, 246, 0.12);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.site-btn-lg[b-o55q9mtx9r] {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero-section[b-o55q9mtx9r] {
    background: transparent;
    color: var(--text-dark);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section[b-o55q9mtx9r]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.25;
    z-index: 0;
}

.hero-content[b-o55q9mtx9r] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    row-gap: 1rem;
    grid-template-areas:
        "headline visual"
        "copy visual";
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hero-headline[b-o55q9mtx9r] {
    grid-area: headline;
}

.hero-copy[b-o55q9mtx9r] {
    grid-area: copy;
}

.hero-title[b-o55q9mtx9r] {
    font-size: clamp(2rem, 5vw + 1rem, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.18);
}

.gradient-text[b-o55q9mtx9r] {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description[b-o55q9mtx9r] {
    font-size: 1.25rem;
    color: #9fb0d0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons[b-o55q9mtx9r] {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats[b-o55q9mtx9r] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat[b-o55q9mtx9r] {
    text-align: center;
}

.stat-number[b-o55q9mtx9r] {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat-label[b-o55q9mtx9r] {
    font-size: 0.875rem;
    color: #9fb0d0;
}

.stat:hover .stat-number[b-o55q9mtx9r] {
    transform: scale(1.1);
}

/* Hero Visual - Tracker Panel */
.hero-visual[b-o55q9mtx9r] {
    grid-area: visual;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracker-panel[b-o55q9mtx9r] {
    width: 100%;
    min-height: 280px;
    background: linear-gradient(180deg, rgba(22, 32, 51, 0.98), rgba(17, 26, 46, 0.98));
    border: 1px solid #24324d;
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.10);
    padding: 2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.tracker-panel[b-o55q9mtx9r]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.22);
    pointer-events: none;
}

.tracker-panel-header[b-o55q9mtx9r] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tracker-logo[b-o55q9mtx9r] {
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.tracker-panel-title[b-o55q9mtx9r] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #f3f7ff;
    letter-spacing: -0.01em;
}

.tracker-form[b-o55q9mtx9r] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tracker-field[b-o55q9mtx9r] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.tracker-label[b-o55q9mtx9r] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #9fb0d0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tracker-optional[b-o55q9mtx9r] {
    font-size: 0.7rem;
    font-weight: 500;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 4px;
    padding: 1px 6px;
    text-transform: none;
    letter-spacing: 0;
}

.tracker-input[b-o55q9mtx9r] {
    background: rgba(11, 18, 32, 0.7);
    border: 1px solid #24324d;
    border-radius: 10px;
    color: #f3f7ff;
    font-size: 0.9375rem;
    padding: 0.65rem 0.875rem;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    outline: none;
}

.tracker-input[b-o55q9mtx9r]::placeholder {
    color: rgba(159, 176, 208, 0.45);
}

.tracker-input:focus[b-o55q9mtx9r] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    background: rgba(17, 26, 46, 0.95);
}

.carrier-wrapper[b-o55q9mtx9r] {
    position: relative;
    outline: none;
}

.carrier-list[b-o55q9mtx9r] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #111e36;
    border: 1px solid #2c3f5e;
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.12);
    max-height: 220px;
    overflow-y: auto;
    z-index: 999;
    scrollbar-width: thin;
    scrollbar-color: #2c3f5e transparent;
}

.carrier-list[b-o55q9mtx9r]::-webkit-scrollbar {
    width: 4px;
}

.carrier-list[b-o55q9mtx9r]::-webkit-scrollbar-track {
    background: transparent;
}

.carrier-list[b-o55q9mtx9r]::-webkit-scrollbar-thumb {
    background: #2c3f5e;
    border-radius: 2px;
}

.carrier-item[b-o55q9mtx9r] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.875rem;
    cursor: pointer;
    transition: background 0.1s ease;
    gap: 0.5rem;
}

.carrier-item:first-child[b-o55q9mtx9r] {
    border-radius: 10px 10px 0 0;
}

.carrier-item:last-child[b-o55q9mtx9r] {
    border-radius: 0 0 10px 10px;
}

.carrier-item:hover[b-o55q9mtx9r],
.carrier-item.active[b-o55q9mtx9r] {
    background: rgba(59, 130, 246, 0.14);
}

.carrier-item-name[b-o55q9mtx9r] {
    font-size: 0.875rem;
    color: #e2eaf8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.carrier-item-iso[b-o55q9mtx9r] {
    font-size: 0.7rem;
    font-weight: 600;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 4px;
    padding: 1px 5px;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.carrier-empty[b-o55q9mtx9r] {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
    color: #9fb0d0;
    text-align: center;
}

.carrier-hint[b-o55q9mtx9r] {
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
    color: #60a5fa;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.tracker-btn[b-o55q9mtx9r] {
    background: linear-gradient(180deg, #4a90ff 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    width: 100%;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35), 0 0 24px rgba(59, 130, 246, 0.20);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    gap: 0.5rem;
}

.tracker-btn:hover[b-o55q9mtx9r] {
    background: linear-gradient(180deg, #5aa0ff 0%, #2f6ef0 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5), 0 0 36px rgba(59, 130, 246, 0.28);
    transform: translateY(-1px);
}

.tracker-btn:disabled[b-o55q9mtx9r],
.site-btn-primary:disabled[b-o55q9mtx9r] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.tracker-hint[b-o55q9mtx9r] {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(159, 176, 208, 0.55);
    margin: 0;
}

.not-found-overlay[b-o55q9mtx9r] {
    position: fixed;
    inset: 0;
    background: rgba(6, 11, 24, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
    animation: not-found-fade-in-b-o55q9mtx9r 0.25s ease;
}

@keyframes not-found-fade-in-b-o55q9mtx9r {
    from { opacity: 0; }
    to { opacity: 1; }
}

.not-found-modal[b-o55q9mtx9r] {
    background: linear-gradient(165deg, #162033 0%, #111a2e 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: not-found-scale-in-b-o55q9mtx9r 0.3s ease;
}

@keyframes not-found-scale-in-b-o55q9mtx9r {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.not-found-icon[b-o55q9mtx9r] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-found-title[b-o55q9mtx9r] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #f3f7ff);
    margin: 0 0 0.75rem;
}

.not-found-message[b-o55q9mtx9r] {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted, #9fb0d0);
    margin: 0 0 1.5rem;
}

.not-found-close[b-o55q9mtx9r] {
    min-width: 160px;
}

/* Features Section */
.features-section[b-o55q9mtx9r] {
    padding: 5rem 0;
    background: transparent;
}

.section-title[b-o55q9mtx9r] {
    text-align: center;
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.12);
}

.features-grid[b-o55q9mtx9r] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card[b-o55q9mtx9r] {
    background: linear-gradient(180deg, rgba(28, 42, 67, 0.92) 0%, rgba(22, 32, 51, 0.96) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #24324d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover[b-o55q9mtx9r] {
    transform: translateY(-4px);
    border-color: #2f4266;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.feature-icon[b-o55q9mtx9r] {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3[b-o55q9mtx9r] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p[b-o55q9mtx9r] {
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section[b-o55q9mtx9r] {
    padding: 5rem 0;
}

.steps[b-o55q9mtx9r] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step[b-o55q9mtx9r] {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number[b-o55q9mtx9r] {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3[b-o55q9mtx9r] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p[b-o55q9mtx9r] {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section[b-o55q9mtx9r] {
    padding: 5rem 0;
    background: transparent;
}

.pricing-grid[b-o55q9mtx9r] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card[b-o55q9mtx9r] {
    background: linear-gradient(180deg, rgba(28, 42, 67, 0.92) 0%, rgba(22, 32, 51, 0.96) 100%);
    border: 2px solid #24324d;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover[b-o55q9mtx9r] {
    transform: translateY(-4px);
    border-color: #2f4266;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.pricing-card.featured[b-o55q9mtx9r] {
    border-color: #3b82f6;
}

.pricing-card.featured:hover[b-o55q9mtx9r] {
    transform: translateY(-5px);
}

.pricing-badge[b-o55q9mtx9r] {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header[b-o55q9mtx9r] {
    text-align: center;
}

.pricing-header h3[b-o55q9mtx9r] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.price[b-o55q9mtx9r] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency[b-o55q9mtx9r] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
}

.amount[b-o55q9mtx9r] {
    font-size: 3rem;
    font-weight: 800;
    color: #f3f7ff;
}

.period[b-o55q9mtx9r] {
    font-size: 1rem;
    color: #9fb0d0;
}

.pricing-header p[b-o55q9mtx9r] {
    color: #9fb0d0;
    margin-top: 0.5rem;
}

.billing-copy[b-o55q9mtx9r] {
    color: #dbe7ff;
    font-size: 0.95rem;
    font-weight: 600;
}

.pricing-features[b-o55q9mtx9r] {
    margin: 0.75rem 0;
    text-align: left;
    list-style: none;
    padding: 0;
    flex: 1;
}

.pricing-features li[b-o55q9mtx9r] {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9fb0d0;
}

.savings[b-o55q9mtx9r] {
    color: #10B981;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.site-btn-full[b-o55q9mtx9r] {
    width: 100%;
    justify-content: center;
}

/* Testimonials Section */
.testimonials-section[b-o55q9mtx9r] {
    padding: 5rem 0;
}

.testimonials-grid[b-o55q9mtx9r] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial[b-o55q9mtx9r] {
    background: linear-gradient(180deg, rgba(28, 42, 67, 0.92) 0%, rgba(22, 32, 51, 0.96) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #24324d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover[b-o55q9mtx9r] {
    transform: translateY(-4px);
    border-color: #2f4266;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.testimonial-content p[b-o55q9mtx9r] {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author[b-o55q9mtx9r] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar[b-o55q9mtx9r] {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img[b-o55q9mtx9r] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-name[b-o55q9mtx9r] {
    font-weight: 700;
    color: var(--text-dark);
}

.author-title[b-o55q9mtx9r] {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section[b-o55q9mtx9r] {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-section[b-o55q9mtx9r]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content[b-o55q9mtx9r] {
    position: relative;
    z-index: 1;
}

.cta-content h2[b-o55q9mtx9r] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p[b-o55q9mtx9r] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons[b-o55q9mtx9r] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .site-btn-outline[b-o55q9mtx9r] {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .site-btn-outline:hover[b-o55q9mtx9r] {
    background: var(--white);
    color: var(--primary-color);
}


/* Animations */
@keyframes pulse-b-o55q9mtx9r {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float-b-o55q9mtx9r {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes trail-b-o55q9mtx9r {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section[b-o55q9mtx9r] {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-buttons[b-o55q9mtx9r],
    .hero-stats[b-o55q9mtx9r] {
        display: none;
    }
    
    .hero-content[b-o55q9mtx9r] {
        grid-template-columns: 1fr;
        row-gap: 1rem;
        grid-template-areas:
            "headline"
            "visual"
            "copy";
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title[b-o55q9mtx9r] {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description[b-o55q9mtx9r] {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #9fb0d0;
    }
    
    .hero-buttons[b-o55q9mtx9r] {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .site-btn[b-o55q9mtx9r] {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats[b-o55q9mtx9r] {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number[b-o55q9mtx9r] {
        font-size: 1.5rem;
    }
    
    .tracker-panel[b-o55q9mtx9r] {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid[b-o55q9mtx9r] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card[b-o55q9mtx9r] {
        padding: 1.5rem;
    }
    
    .steps[b-o55q9mtx9r] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid[b-o55q9mtx9r] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured[b-o55q9mtx9r] {
        transform: none;
    }
    
    .testimonials-grid[b-o55q9mtx9r] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons[b-o55q9mtx9r] {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-buttons .site-btn[b-o55q9mtx9r] {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-section[b-o55q9mtx9r] {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-content[b-o55q9mtx9r] {
        padding: 0 0.75rem;
    }
    
    .hero-title[b-o55q9mtx9r] {
        font-size: 1.75rem;
    }
    
    .hero-description[b-o55q9mtx9r] {
        font-size: 0.875rem;
    }
    
    .hero-buttons .site-btn[b-o55q9mtx9r] {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero-stats[b-o55q9mtx9r] {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat[b-o55q9mtx9r] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .stat-number[b-o55q9mtx9r] {
        font-size: 1.25rem;
    }
    
    .stat-label[b-o55q9mtx9r] {
        font-size: 0.75rem;
        color: #9fb0d0;
    }
    
    .tracker-panel[b-o55q9mtx9r] {
        max-width: 360px;
    }
    
    .feature-card[b-o55q9mtx9r] {
        padding: 1rem;
    }
    
    .feature-card h3[b-o55q9mtx9r] {
        font-size: 1.25rem;
    }
    
    .pricing-card[b-o55q9mtx9r] {
        padding: 1.5rem;
    }
    
    .testimonial[b-o55q9mtx9r] {
        padding: 1.5rem;
    }
    
    .section-title[b-o55q9mtx9r] {
        font-size: 2rem;
    }
    
    .cta-content h2[b-o55q9mtx9r] {
        font-size: 2rem;
    }
    
    .cta-content p[b-o55q9mtx9r] {
        font-size: 1rem;
    }
}
/* _content/package-tracker-landing/Components/Pages/Login.razor.rz.scp.css */
/* Authentication Pages Styles */
.auth-container[b-5bq866b3mp] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

/* Reset any conflicting styles */
.auth-container *[b-5bq866b3mp] {
    box-sizing: border-box;
}

.auth-container[b-5bq866b3mp]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.auth-loading-overlay[b-5bq866b3mp] {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 12, 22, 0.72);
    backdrop-filter: blur(10px);
}

.auth-loading-card[b-5bq866b3mp] {
    width: min(360px, calc(100vw - 2rem));
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: linear-gradient(180deg, rgba(22, 32, 51, 0.96), rgba(13, 20, 33, 0.96));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    text-align: center;
    color: #f3f7ff;
}

.auth-loading-card i[b-5bq866b3mp] {
    color: #ff7a45;
    margin-bottom: 1rem;
}

.auth-loading-card h3[b-5bq866b3mp] {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.auth-loading-card p[b-5bq866b3mp] {
    margin: 0;
    color: #9fb0d0;
    line-height: 1.5;
}

.auth-email-password-form[b-5bq866b3mp] {
    display: none;
}

.auth-footer[b-5bq866b3mp] {
    display: none;
}

.divider[b-5bq866b3mp] {
    display: none;
}

.auth-card[b-5bq866b3mp] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.auth-brand[b-5bq866b3mp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.auth-brand-text[b-5bq866b3mp] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
    white-space: nowrap;
}

.auth-header[b-5bq866b3mp] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo[b-5bq866b3mp] {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
}

.auth-title[b-5bq866b3mp] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-5bq866b3mp] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.auth-form[b-5bq866b3mp] {
    margin-bottom: 2rem;
}

.form-group[b-5bq866b3mp] {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-label[b-5bq866b3mp] {
    display: block;
    font-weight: 600;
    color: #9fb0d0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Form Input Styles - Enhanced for Blazor Components */
.form-input[b-5bq866b3mp],
input[type="email"][b-5bq866b3mp],
input[type="password"][b-5bq866b3mp],
input[type="text"][b-5bq866b3mp] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

.form-input:focus[b-5bq866b3mp],
input[type="email"]:focus[b-5bq866b3mp],
input[type="password"]:focus[b-5bq866b3mp],
input[type="text"]:focus[b-5bq866b3mp] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input[b-5bq866b3mp]::placeholder,
input[type="email"][b-5bq866b3mp]::placeholder,
input[type="password"][b-5bq866b3mp]::placeholder,
input[type="text"][b-5bq866b3mp]::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

/* Specific styling for Blazor InputText components */
[b-5bq866b3mp] input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

[b-5bq866b3mp] input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-5bq866b3mp] input::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

.password-input-container[b-5bq866b3mp] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input-container .form-input[b-5bq866b3mp],
.password-input-container input[b-5bq866b3mp] {
    padding-right: 3rem !important; /* Space for the toggle button */
    width: 100%;
}

.password-input-container[b-5bq866b3mp]  input {
    padding-right: 3rem !important; /* Space for the toggle button */
    width: 100%;
}

.password-toggle[b-5bq866b3mp] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9fb0d0;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle:hover[b-5bq866b3mp] {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.15);
}

.password-toggle i[b-5bq866b3mp] {
    font-size: 1rem;
    pointer-events: none;
}

.form-options[b-5bq866b3mp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-container[b-5bq866b3mp] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.875rem;
    color: #9fb0d0;
}

.checkbox-container input[b-5bq866b3mp] {
    margin-right: 0.5rem;
}

.forgot-password[b-5bq866b3mp] {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password:hover[b-5bq866b3mp] {
    color: #2563eb;
}

.btn-full[b-5bq866b3mp] {
    width: 100%;
    justify-content: center;
}

.auth-footer[b-5bq866b3mp] {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.auth-footer p[b-5bq866b3mp] {
    color: #9fb0d0;
    font-size: 0.875rem;
}

.auth-link[b-5bq866b3mp] {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-5bq866b3mp] {
    color: #2563eb;
}

.divider[b-5bq866b3mp] {
    position: relative;
    text-align: center;
    margin: 1rem 0;
}

.divider[b-5bq866b3mp]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #24324d;
}

.divider span[b-5bq866b3mp] {
    background: #162033;
    padding: 0 1rem;
    color: #9fb0d0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.social-login[b-5bq866b3mp] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.divider-or[b-5bq866b3mp] {
    position: relative;
    text-align: center;
    margin: 1.25rem 0 1rem;
}

.divider-or[b-5bq866b3mp]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #24324d;
}

.divider-or span[b-5bq866b3mp] {
    background: #162033;
    padding: 0 1rem;
    color: #9fb0d0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.auth-email-alt[b-5bq866b3mp] {
    margin-top: 0.5rem;
}

.auth-email-alt .form-group[b-5bq866b3mp] {
    margin-top: 0.75rem;
}

.auth-email-alt .btn[b-5bq866b3mp] {
    margin-top: 1rem;
}

.auth-signup-prompt[b-5bq866b3mp] {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: #9fb0d0;
    text-align: center;
}

.google-signin-wrapper[b-5bq866b3mp] {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 44px;
    border-radius: 0.25rem;
    overflow: hidden;
    cursor: pointer;
}

.google-signin-wrapper > div:first-child[b-5bq866b3mp] {
    position: relative;
    width: 100%;
    height: 100%;
}

.google-signin-wrapper iframe[b-5bq866b3mp] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.google-signin-custom-btn[b-5bq866b3mp] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    flex-direction: row;
    gap: 0;
    justify-content: flex-start;
    pointer-events: none;
    z-index: 0;
    color: white;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    overflow: hidden;
}

.google-signin-custom-btn-icon[b-5bq866b3mp] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 100%;
    min-width: 44px;
    background: white;
    border-radius: 0.25rem 0 0 0.25rem;
    border: 1px solid #4285F4;
}

.google-signin-custom-btn-icon svg[b-5bq866b3mp] {
    width: 20px;
    height: 20px;
}

.google-signin-custom-btn-text[b-5bq866b3mp] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 0;
    white-space: nowrap;
    padding: 0 16px;
    background: #4285F4;
    border-radius: 0 0.25rem 0.25rem 0;
}

.social-btn[b-5bq866b3mp] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    background: #111a2e;
    color: #f3f7ff;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.social-btn:hover[b-5bq866b3mp] {
    border-color: #3b82f6;
    background: #162033;
}

.google-btn:hover[b-5bq866b3mp] {
    border-color: #DB4437;
    color: #DB4437;
}

.github-btn:hover[b-5bq866b3mp] {
    border-color: #333;
    color: #333;
}

/* Password Strength Indicator */
.password-strength[b-5bq866b3mp] {
    margin-top: 0.5rem;
}

.strength-bar[b-5bq866b3mp] {
    width: 100%;
    height: 4px;
    background: #24324d;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-fill[b-5bq866b3mp] {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text[b-5bq866b3mp] {
    font-size: 0.75rem;
    color: #9fb0d0;
}

/* Password Match Indicator */
.password-match[b-5bq866b3mp] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #10B981;
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-card[b-5bq866b3mp] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-title[b-5bq866b3mp] {
        font-size: 1.5rem;
    }
    
    .social-login[b-5bq866b3mp] {
        flex-direction: column;
    }
}

/* Alert Styles */
.alert[b-5bq866b3mp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.alert-error[b-5bq866b3mp] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #B91C1C;
}

.alert-success[b-5bq866b3mp] {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #15803D;
}

.alert i[b-5bq866b3mp] {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Loading Styles */
.btn-primary:disabled[b-5bq866b3mp] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary:disabled:hover[b-5bq866b3mp] {
    background-color: #3b82f6;
    transform: none;
}

.fa-spinner[b-5bq866b3mp] {
    animation: spin-b-5bq866b3mp 1s linear infinite;
}

@keyframes spin-b-5bq866b3mp {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Validation Styles */
.validation-summary[b-5bq866b3mp] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #B91C1C;
    font-size: 0.875rem;
}

.validation-summary ul[b-5bq866b3mp] {
    margin: 0;
    padding-left: 1.25rem;
}

.validation-message[b-5bq866b3mp] {
    color: #B91C1C;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}
/* _content/package-tracker-landing/Components/Pages/PaymentSuccess.razor.rz.scp.css */
.success-container[b-78v3vwwvr6] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.success-container[b-78v3vwwvr6]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.success-card[b-78v3vwwvr6] {
    background: #162033;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
    text-align: center;
}

.success-icon[b-78v3vwwvr6] {
    margin-bottom: 1.5rem;
}

.success-icon i[b-78v3vwwvr6] {
    font-size: 4rem;
    color: #10B981;
    animation: scaleIn-b-78v3vwwvr6 0.5s ease-out;
}

@keyframes scaleIn-b-78v3vwwvr6 {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title[b-78v3vwwvr6] {
    font-size: 2rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.success-message[b-78v3vwwvr6] {
    color: #9fb0d0;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.success-note[b-78v3vwwvr6] {
    margin: 0 0 1.5rem;
    color: #dbe7ff;
    font-size: 1rem;
    line-height: 1.6;
}

.success-details[b-78v3vwwvr6] {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item[b-78v3vwwvr6] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #059669;
    font-weight: 500;
}

.detail-item i[b-78v3vwwvr6] {
    font-size: 1.25rem;
}

.redirect-info[b-78v3vwwvr6] {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.redirect-info p[b-78v3vwwvr6] {
    margin: 0;
    color: #F59E0B;
    font-weight: 500;
}

.countdown[b-78v3vwwvr6] {
    font-weight: 700;
    color: #3b82f6;
    font-size: 1.25rem;
}

.success-actions[b-78v3vwwvr6] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.success-actions .btn[b-78v3vwwvr6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
    border: 1px solid transparent;
    min-width: 200px;
}

.success-actions .btn-outline[b-78v3vwwvr6] {
    color: #e7eefc;
    background: linear-gradient(180deg, rgba(30, 42, 68, 0.96), rgba(17, 26, 46, 0.96));
    border-color: rgba(91, 167, 255, 0.32);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.success-actions .btn-outline:hover[b-78v3vwwvr6] {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(43, 58, 89, 0.98), rgba(23, 35, 58, 0.98));
    border-color: rgba(91, 167, 255, 0.48);
    transform: translateY(-1px);
}

.success-actions .btn:disabled[b-78v3vwwvr6] {
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    transform: none;
}

.success-password-form[b-78v3vwwvr6] {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 1.5rem;
    text-align: left;
}

.form-group[b-78v3vwwvr6] {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.form-label[b-78v3vwwvr6] {
    display: block;
    margin-bottom: 0.5rem;
    color: #c7d5f3;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-input[b-78v3vwwvr6],
.success-password-form[b-78v3vwwvr6]  input.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #2d3f61;
    border-radius: 0.75rem;
    background: #0f1728;
    color: #f3f7ff;
    font-size: 1rem;
    line-height: 1.5;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input[b-78v3vwwvr6]::placeholder,
.success-password-form[b-78v3vwwvr6]  input.form-input::placeholder {
    color: rgba(159, 176, 208, 0.7);
    opacity: 1;
}

.form-input:focus[b-78v3vwwvr6],
.success-password-form[b-78v3vwwvr6]  input.form-input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
    background: #111c31;
}

.btn[b-78v3vwwvr6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.95rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.btn:hover:not(:disabled)[b-78v3vwwvr6] {
    transform: translateY(-1px);
}

.btn:disabled[b-78v3vwwvr6] {
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    transform: none;
}

.btn-primary[b-78v3vwwvr6] {
    color: #fff;
    background: linear-gradient(180deg, #4a90ff 0%, #2563eb 100%);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover:not(:disabled)[b-78v3vwwvr6] {
    color: #fff;
    background: linear-gradient(180deg, #5aa0ff 0%, #2f6ef0 100%);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.34);
}

.btn-outline[b-78v3vwwvr6] {
    color: #e7eefc;
    background: linear-gradient(180deg, rgba(30, 42, 68, 0.96), rgba(17, 26, 46, 0.96));
    border-color: rgba(91, 167, 255, 0.32);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.btn-outline:hover:not(:disabled)[b-78v3vwwvr6] {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(43, 58, 89, 0.98), rgba(23, 35, 58, 0.98));
    border-color: rgba(91, 167, 255, 0.48);
}

.btn-full[b-78v3vwwvr6] {
    width: 100%;
}

.alert[b-78v3vwwvr6] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin: 0 0 1rem;
    padding: 0.9rem 1rem;
    border-radius: 0.875rem;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert-error[b-78v3vwwvr6] {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.32);
    color: #fecaca;
}

.alert-success[b-78v3vwwvr6] {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #bbf7d0;
}

.social-login[b-78v3vwwvr6] {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}

.checkout-google-login[b-78v3vwwvr6] {
    margin-bottom: 0.5rem;
}

.google-signin-wrapper[b-78v3vwwvr6] {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 44px;
    border-radius: 0.4rem;
    overflow: hidden;
    cursor: pointer;
}

.google-signin-wrapper > div:first-child[b-78v3vwwvr6] {
    position: relative;
    width: 100%;
    height: 100%;
}

.google-signin-wrapper iframe[b-78v3vwwvr6] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

.google-signin-custom-btn[b-78v3vwwvr6] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 0.4rem;
    pointer-events: none;
    z-index: 0;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
}

.google-signin-custom-btn-icon[b-78v3vwwvr6] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 100%;
    background: #fff;
    border: 1px solid #4285F4;
    border-right: none;
    border-radius: 0.4rem 0 0 0.4rem;
}

.google-signin-custom-btn-icon svg[b-78v3vwwvr6] {
    width: 20px;
    height: 20px;
}

.google-signin-custom-btn-text[b-78v3vwwvr6] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    padding: 0 16px;
    background: #4285F4;
    border-radius: 0 0.4rem 0.4rem 0;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .success-card[b-78v3vwwvr6] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    .success-title[b-78v3vwwvr6] {
        font-size: 1.5rem;
    }
    .success-icon i[b-78v3vwwvr6] {
        font-size: 3.25rem;
    }
    .success-message[b-78v3vwwvr6] {
        font-size: 1rem;
    }

    .success-actions .btn[b-78v3vwwvr6] {
        width: 100%;
    }

    .google-signin-wrapper[b-78v3vwwvr6] {
        width: 100%;
    }
}
/* _content/package-tracker-landing/Components/Pages/Pricing.razor.rz.scp.css */
/* Pricing Page - copy of Home #pricing section */
.pricing-page[b-5obfc27v0u] {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #60a5fa;
    --text-dark: #f3f7ff;
    --text-light: #9fb0d0;
    --background-light: #111a2e;
    --white: #162033;
    min-height: 100vh;
    background: transparent;
    padding: 2rem 0 4rem;
}

.pricing-section[b-5obfc27v0u] {
    padding: 4rem 0 2rem;
}

.container[b-5obfc27v0u] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title[b-5obfc27v0u] {
    text-align: center;
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.pricing-grid[b-5obfc27v0u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card[b-5obfc27v0u] {
    background: linear-gradient(180deg, rgba(28, 42, 67, 0.92) 0%, rgba(22, 32, 51, 0.96) 100%);
    border: 2px solid #24324d;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover[b-5obfc27v0u] {
    transform: translateY(-4px);
    border-color: #2f4266;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.pricing-card.featured[b-5obfc27v0u] {
    border-color: #3b82f6;
}

.pricing-card.featured:hover[b-5obfc27v0u] {
    transform: translateY(-5px);
}

.pricing-badge[b-5obfc27v0u] {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header[b-5obfc27v0u] {
    text-align: center;
}

.pricing-header h3[b-5obfc27v0u] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.price[b-5obfc27v0u] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency[b-5obfc27v0u] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
}

.amount[b-5obfc27v0u] {
    font-size: 3rem;
    font-weight: 800;
    color: #f3f7ff;
}

.period[b-5obfc27v0u] {
    font-size: 1rem;
    color: #9fb0d0;
}

.pricing-header p[b-5obfc27v0u] {
    color: #9fb0d0;
    margin-top: 0.5rem;
}

.billing-copy[b-5obfc27v0u] {
    color: #dbe7ff;
    font-size: 0.95rem;
    font-weight: 600;
}

.pricing-features[b-5obfc27v0u] {
    margin: 0.75rem 0;
    text-align: left;
    list-style: none;
    padding: 0;
    flex: 1;
}

.pricing-features li[b-5obfc27v0u] {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9fb0d0;
}

.pricing-features i[b-5obfc27v0u] {
    color: #10B981;
    font-size: 1rem;
}

.savings[b-5obfc27v0u] {
    color: #10B981;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn[b-5obfc27v0u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary[b-5obfc27v0u] {
    background: linear-gradient(180deg, #4a90ff 0%, #2563eb 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover[b-5obfc27v0u] {
    background: linear-gradient(180deg, #5aa0ff 0%, #2f6ef0 100%);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.btn-outline[b-5obfc27v0u] {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover[b-5obfc27v0u] {
    background: var(--primary-color);
    color: var(--white);
}

.btn-full[b-5obfc27v0u] {
    width: 100%;
}

.pricing-page-actions[b-5obfc27v0u] {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .pricing-grid[b-5obfc27v0u] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured[b-5obfc27v0u] {
        transform: none;
    }

    .pricing-card.featured:hover[b-5obfc27v0u] {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .pricing-card[b-5obfc27v0u] {
        padding: 1.5rem;
    }

    .section-title[b-5obfc27v0u] {
        font-size: 2rem;
    }
}
/* _content/package-tracker-landing/Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.legal-page[b-txk8kz8nli] {
    background: #0b1220;
    min-height: calc(100vh - 300px);
    padding: 4rem 0;
}

.legal-content[b-txk8kz8nli] {
    background: #162033;
    border-radius: 0.5rem;
    padding: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1[b-txk8kz8nli] {
    font-size: 2rem;
    font-weight: 700;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.effective-date[b-txk8kz8nli],
.website[b-txk8kz8nli] {
    color: #9fb0d0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.website a[b-txk8kz8nli] {
    color: #3b82f6;
    text-decoration: none;
}

.website a:hover[b-txk8kz8nli] {
    text-decoration: underline;
}

.legal-section[b-txk8kz8nli] {
    margin-top: 2.5rem;
}

.legal-section:first-of-type[b-txk8kz8nli] {
    margin-top: 2rem;
}

.legal-section h2[b-txk8kz8nli] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.legal-section h3[b-txk8kz8nli] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f3f7ff;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-section h4[b-txk8kz8nli] {
    font-size: 1rem;
    font-weight: 600;
    color: #9fb0d0;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p[b-txk8kz8nli] {
    color: #9fb0d0;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-section ul[b-txk8kz8nli] {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li[b-txk8kz8nli] {
    color: #9fb0d0;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.legal-section ul li strong[b-txk8kz8nli] {
    color: #f3f7ff;
    font-weight: 600;
}

.legal-section ol[b-txk8kz8nli] {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ol li[b-txk8kz8nli] {
    color: #9fb0d0;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.legal-section code[b-txk8kz8nli] {
    background: #111a2e;
    color: #DC2626;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    font-family: 'Courier New', monospace;
}

.legal-section a[b-txk8kz8nli] {
    color: #3b82f6;
    text-decoration: none;
}

.legal-section a:hover[b-txk8kz8nli] {
    text-decoration: underline;
}

.legal-divider[b-txk8kz8nli] {
    height: 2px;
    background: #24324d;
    margin: 3rem 0;
}

/* Cookie Table Styles */
.cookie-table[b-txk8kz8nli] {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cookie-table thead[b-txk8kz8nli] {
    background: #111a2e;
}

.cookie-table thead th[b-txk8kz8nli] {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #f3f7ff;
    font-size: 0.875rem;
    border-bottom: 2px solid #24324d;
}

.cookie-table tbody tr[b-txk8kz8nli] {
    border-bottom: 1px solid #24324d;
}

.cookie-table tbody tr:last-child[b-txk8kz8nli] {
    border-bottom: none;
}

.cookie-table tbody td[b-txk8kz8nli] {
    padding: 0.875rem 1rem;
    color: #9fb0d0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-table tbody td:first-child[b-txk8kz8nli] {
    font-weight: 500;
}

.cookie-table tbody tr:hover[b-txk8kz8nli] {
    background: #111a2e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-page[b-txk8kz8nli] {
        padding: 2rem 0;
    }

    .legal-content[b-txk8kz8nli] {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .legal-content h1[b-txk8kz8nli] {
        font-size: 1.5rem;
    }

    .legal-section h2[b-txk8kz8nli] {
        font-size: 1.125rem;
    }

    .legal-section h3[b-txk8kz8nli] {
        font-size: 1rem;
    }

    .legal-section h4[b-txk8kz8nli] {
        font-size: 0.9375rem;
    }

    .cookie-table[b-txk8kz8nli] {
        font-size: 0.8125rem;
    }

    .cookie-table thead th[b-txk8kz8nli],
    .cookie-table tbody td[b-txk8kz8nli] {
        padding: 0.625rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .legal-content[b-txk8kz8nli] {
        padding: 1.5rem 1rem;
    }

    .legal-content h1[b-txk8kz8nli] {
        font-size: 1.25rem;
    }

    .legal-section[b-txk8kz8nli] {
        margin-top: 2rem;
    }

    .legal-section p[b-txk8kz8nli],
    .legal-section ul li[b-txk8kz8nli] {
        font-size: 0.875rem;
    }

    .cookie-table[b-txk8kz8nli] {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cookie-table thead[b-txk8kz8nli],
    .cookie-table tbody[b-txk8kz8nli],
    .cookie-table tr[b-txk8kz8nli],
    .cookie-table th[b-txk8kz8nli],
    .cookie-table td[b-txk8kz8nli] {
        display: block;
    }

    .cookie-table thead[b-txk8kz8nli] {
        display: none;
    }

    .cookie-table tbody tr[b-txk8kz8nli] {
        margin-bottom: 1rem;
        border: 1px solid #24324d;
        border-radius: 0.375rem;
    }

    .cookie-table tbody td[b-txk8kz8nli] {
        text-align: left;
        padding: 0.5rem 0.75rem;
        position: relative;
        padding-left: 40%;
        border-bottom: 1px solid #24324d;
    }

    .cookie-table tbody td:last-child[b-txk8kz8nli] {
        border-bottom: none;
    }

    .cookie-table tbody td[b-txk8kz8nli]::before {
        content: attr(data-label);
        position: absolute;
        left: 0.75rem;
        width: 35%;
        font-weight: 600;
        color: #f3f7ff;
    }

    .cookie-table tbody td:nth-child(1)[b-txk8kz8nli]::before {
        content: "Cookie Name";
    }

    .cookie-table tbody td:nth-child(2)[b-txk8kz8nli]::before {
        content: "Purpose";
    }

    .cookie-table tbody td:nth-child(3)[b-txk8kz8nli]::before {
        content: "Duration";
    }
}
/* _content/package-tracker-landing/Components/Pages/ResetPassword.razor.rz.scp.css */
/* Authentication Pages Styles - Reused from Login */
.auth-container[b-9kme4japfv] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.auth-container[b-9kme4japfv]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.auth-card[b-9kme4japfv] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.auth-header[b-9kme4japfv] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title[b-9kme4japfv] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-9kme4japfv] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.form-group[b-9kme4japfv] {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-label[b-9kme4japfv] {
    display: block;
    font-weight: 600;
    color: #9fb0d0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Form Input Styles - Enhanced for Blazor Components */
.form-input[b-9kme4japfv],
input[type="email"][b-9kme4japfv],
input[type="password"][b-9kme4japfv],
input[type="text"][b-9kme4japfv] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

.form-input:focus[b-9kme4japfv],
input[type="email"]:focus[b-9kme4japfv],
input[type="password"]:focus[b-9kme4japfv],
input[type="text"]:focus[b-9kme4japfv] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input[b-9kme4japfv]::placeholder,
input[type="email"][b-9kme4japfv]::placeholder,
input[type="password"][b-9kme4japfv]::placeholder,
input[type="text"][b-9kme4japfv]::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

/* Specific styling for Blazor InputText components */
[b-9kme4japfv] input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

[b-9kme4japfv] input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-9kme4japfv] input::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

/* Form disabled state */
.form-input:disabled[b-9kme4japfv],
input[type="email"]:disabled[b-9kme4japfv],
input[type="password"]:disabled[b-9kme4japfv],
input[type="text"]:disabled[b-9kme4japfv] {
    background-color: #0b1220;
    cursor: not-allowed;
    opacity: 0.6;
}

[b-9kme4japfv] input:disabled {
    background-color: #0b1220;
    cursor: not-allowed;
    opacity: 0.6;
}

.password-input-container[b-9kme4japfv] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input-container .form-input[b-9kme4japfv],
.password-input-container input[b-9kme4japfv] {
    padding-right: 3rem;
    width: 100%;
}

.password-input-container[b-9kme4japfv]  input {
    padding-right: 3rem !important;
    width: 100%;
}

.password-toggle[b-9kme4japfv] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9fb0d0;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle:hover[b-9kme4japfv] {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.15);
}

.password-toggle i[b-9kme4japfv] {
    font-size: 1rem;
    pointer-events: none;
}

/* Password Strength Indicator */
.password-strength[b-9kme4japfv] {
    margin-top: 0.5rem;
}

.strength-bar-container[b-9kme4japfv] {
    width: 100%;
    height: 4px;
    background: #24324d;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-bar[b-9kme4japfv] {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text[b-9kme4japfv] {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Password Match Indicator */
.password-match[b-9kme4japfv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #10B981;
}

.btn-full[b-9kme4japfv] {
    width: 100%;
    justify-content: center;
}

.btn-primary:disabled[b-9kme4japfv] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary:disabled:hover[b-9kme4japfv] {
    transform: none;
    box-shadow: none;
}

.auth-footer[b-9kme4japfv] {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-footer p[b-9kme4japfv] {
    color: #9fb0d0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.auth-link[b-9kme4japfv] {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-9kme4japfv] {
    color: #2563eb;
}

.alert[b-9kme4japfv] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    flex-direction: column;
}

.alert-error[b-9kme4japfv] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #B91C1C;
}

.alert-success[b-9kme4japfv] {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #15803D;
}

.alert i[b-9kme4japfv] {
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.validation-message[b-9kme4japfv] {
    color: #B91C1C;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Success redirect message */
.redirect-message[b-9kme4japfv] {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #9fb0d0;
    text-align: center;
}

.fa-spinner[b-9kme4japfv] {
    animation: spin-b-9kme4japfv 1s linear infinite;
}

@keyframes spin-b-9kme4japfv {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-card[b-9kme4japfv] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-title[b-9kme4japfv] {
        font-size: 1.5rem;
    }
}
/* _content/package-tracker-landing/Components/Pages/Settings.razor.rz.scp.css */
.settings-shell[b-63j2s5xuow] {
    min-height: 100vh;
    padding: 2rem 1rem;
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.18), transparent 32%),
        linear-gradient(180deg, #09111d 0%, #0f1728 100%);
}

.settings-frame[b-63j2s5xuow] {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 1.5rem;
}

.settings-sidebar[b-63j2s5xuow],
.panel[b-63j2s5xuow] {
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(10, 18, 32, 0.88);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.35);
    backdrop-filter: blur(16px);
}

.settings-sidebar[b-63j2s5xuow] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
}

.settings-brand h1[b-63j2s5xuow] {
    margin: 0.3rem 0 0.6rem;
    color: #eff6ff;
    font-size: 2.2rem;
    font-weight: 800;
}

.settings-brand p[b-63j2s5xuow] {
    margin: 0;
    color: #97a6ba;
    line-height: 1.6;
}

.settings-eyebrow[b-63j2s5xuow],
.panel-kicker[b-63j2s5xuow] {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ff8d57;
}

.settings-tabs[b-63j2s5xuow] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.settings-tab[b-63j2s5xuow] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.65);
    color: #dbe7f6;
    padding: 1rem;
    text-align: left;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.settings-tab:hover[b-63j2s5xuow] {
    transform: translateY(-1px);
    border-color: rgba(255, 141, 87, 0.55);
}

.settings-tab.active[b-63j2s5xuow] {
    background: linear-gradient(135deg, rgba(255, 122, 69, 0.2), rgba(59, 130, 246, 0.2));
    border-color: rgba(255, 141, 87, 0.7);
}

.settings-tab-icon[b-63j2s5xuow] {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffd6c2;
    flex-shrink: 0;
}

.settings-tab-copy[b-63j2s5xuow] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.settings-tab-copy strong[b-63j2s5xuow] {
    font-size: 0.98rem;
}

.settings-tab-copy span[b-63j2s5xuow] {
    color: #97a6ba;
    font-size: 0.88rem;
    line-height: 1.45;
}

.settings-sidebar-footer[b-63j2s5xuow] {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.settings-content[b-63j2s5xuow] {
    min-width: 0;
}

.panel[b-63j2s5xuow] {
    border-radius: 1.5rem;
    padding: 1.6rem;
}

.loading-panel[b-63j2s5xuow],
.empty-state[b-63j2s5xuow],
.inline-loading[b-63j2s5xuow] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 280px;
    color: #dbe7f6;
}

.inline-loading[b-63j2s5xuow] {
    min-height: 180px;
}

.empty-state i[b-63j2s5xuow],
.loading-panel i[b-63j2s5xuow],
.inline-loading i[b-63j2s5xuow] {
    color: #ff8d57;
}

.panel-header[b-63j2s5xuow] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.panel-header h2[b-63j2s5xuow] {
    margin: 0.2rem 0 0;
    color: #eff6ff;
    font-size: 1.7rem;
    font-weight: 800;
}

.panel-summary[b-63j2s5xuow] {
    color: #97a6ba;
    font-size: 0.95rem;
    white-space: nowrap;
}

.account-hero[b-63j2s5xuow] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 122, 69, 0.14), rgba(59, 130, 246, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.account-avatar[b-63j2s5xuow] {
    font-size: 3.5rem;
    color: #ffd6c2;
}

.account-hero-copy h3[b-63j2s5xuow] {
    margin: 0;
    color: #eff6ff;
    font-size: 1.4rem;
}

.account-hero-copy p[b-63j2s5xuow] {
    margin: 0.35rem 0 0;
    color: #b6c2d4;
}

.status-pill[b-63j2s5xuow],
.history-badge[b-63j2s5xuow] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.status-pill.active[b-63j2s5xuow],
.history-badge.active[b-63j2s5xuow] {
    background: rgba(16, 185, 129, 0.14);
    color: #6ee7b7;
}

.status-pill.trial[b-63j2s5xuow] {
    background: rgba(251, 191, 36, 0.14);
    color: #fde68a;
}

.status-pill.cancelled[b-63j2s5xuow],
.status-pill.inactive[b-63j2s5xuow],
.history-badge.deleted[b-63j2s5xuow] {
    background: rgba(148, 163, 184, 0.14);
    color: #cbd5e1;
}

.stats-grid[b-63j2s5xuow] {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card[b-63j2s5xuow] {
    padding: 1.15rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.stat-label[b-63j2s5xuow] {
    display: block;
    color: #97a6ba;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.stat-card strong[b-63j2s5xuow] {
    display: block;
    color: #eff6ff;
    font-size: 1.15rem;
}

.stat-card p[b-63j2s5xuow] {
    margin: 0.55rem 0 0;
    color: #97a6ba;
    line-height: 1.55;
    font-size: 0.92rem;
}

.history-table[b-63j2s5xuow] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.history-row[b-63j2s5xuow] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(15, 23, 42, 0.72);
}

.history-row.deleted[b-63j2s5xuow] {
    opacity: 0.82;
}

.history-main[b-63j2s5xuow] {
    min-width: 0;
}

.history-number-row[b-63j2s5xuow] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.history-number-row strong[b-63j2s5xuow] {
    color: #eff6ff;
    font-size: 1rem;
    word-break: break-all;
}

.history-meta[b-63j2s5xuow] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: #97a6ba;
    font-size: 0.88rem;
}

.pagination[b-63j2s5xuow] {
    margin-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.pagination-status[b-63j2s5xuow] {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.quota-summary[b-63j2s5xuow] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.2rem;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(255, 122, 69, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.quota-ring[b-63j2s5xuow] {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #eff6ff;
    background: rgba(10, 18, 32, 0.78);
}

.quota-ring span[b-63j2s5xuow] {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.quota-ring small[b-63j2s5xuow] {
    margin-top: 0.25rem;
    color: #97a6ba;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.quota-copy h3[b-63j2s5xuow] {
    margin: 0;
    color: #eff6ff;
    font-size: 1.4rem;
}

.quota-copy p[b-63j2s5xuow] {
    margin: 0.45rem 0 0;
    color: #b6c2d4;
    line-height: 1.6;
}

.quota-progress[b-63j2s5xuow] {
    margin-top: 1.5rem;
}

.quota-progress-bar[b-63j2s5xuow] {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.quota-progress-fill[b-63j2s5xuow] {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff7a45, #60a5fa);
}

.quota-progress-labels[b-63j2s5xuow] {
    margin-top: 0.65rem;
    display: flex;
    justify-content: space-between;
    color: #97a6ba;
    font-size: 0.88rem;
}

.btn[b-63j2s5xuow] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: none;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.btn:hover:not(:disabled)[b-63j2s5xuow] {
    transform: translateY(-1px);
}

.btn:disabled[b-63j2s5xuow] {
    opacity: 0.55;
    cursor: not-allowed;
}

.btn-primary[b-63j2s5xuow] {
    color: #fff7f2;
    background: linear-gradient(135deg, #ff7a45, #ff9f5c);
}

.btn-secondary[b-63j2s5xuow],
.btn-pagination[b-63j2s5xuow] {
    color: #eff6ff;
    background: rgba(51, 65, 85, 0.9);
}

.btn-history[b-63j2s5xuow] {
    flex-shrink: 0;
}

.alert[b-63j2s5xuow] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
}

.alert-error[b-63j2s5xuow] {
    background: rgba(127, 29, 29, 0.28);
    border: 1px solid rgba(248, 113, 113, 0.28);
    color: #fecaca;
}

@media (max-width: 960px) {
    .settings-frame[b-63j2s5xuow] {
        grid-template-columns: 1fr;
    }

    .settings-tabs[b-63j2s5xuow] {
        flex-direction: row;
        overflow-x: auto;
    }

    .settings-tab[b-63j2s5xuow] {
        min-width: 250px;
    }
}

@media (max-width: 720px) {
    .settings-shell[b-63j2s5xuow] {
        padding: 1rem 0.75rem;
    }

    .panel-header[b-63j2s5xuow],
    .history-row[b-63j2s5xuow],
    .pagination[b-63j2s5xuow],
    .account-hero[b-63j2s5xuow],
    .quota-summary[b-63j2s5xuow] {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid[b-63j2s5xuow] {
        grid-template-columns: 1fr;
    }

    .quota-ring[b-63j2s5xuow] {
        width: 96px;
        height: 96px;
    }

    .btn-history[b-63j2s5xuow],
    .settings-sidebar-footer .btn[b-63j2s5xuow],
    .pagination .btn[b-63j2s5xuow] {
        width: 100%;
    }

    .pagination[b-63j2s5xuow] {
        align-items: stretch;
    }
}
/* _content/package-tracker-landing/Components/Pages/SignUp.razor.rz.scp.css */
/* Authentication Pages Styles */
.auth-container[b-7q88mwjma0] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.auth-container[b-7q88mwjma0]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.auth-loading-overlay[b-7q88mwjma0] {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 12, 22, 0.72);
    backdrop-filter: blur(10px);
}

.auth-loading-card[b-7q88mwjma0] {
    width: min(360px, calc(100vw - 2rem));
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: linear-gradient(180deg, rgba(22, 32, 51, 0.96), rgba(13, 20, 33, 0.96));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    text-align: center;
    color: #f3f7ff;
}

.auth-loading-card i[b-7q88mwjma0] {
    color: #ff7a45;
    margin-bottom: 1rem;
}

.auth-loading-card h3[b-7q88mwjma0] {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.auth-loading-card p[b-7q88mwjma0] {
    margin: 0;
    color: #9fb0d0;
    line-height: 1.5;
}

.auth-email-password-form[b-7q88mwjma0] {
    display: none;
}

.auth-footer[b-7q88mwjma0] {
    display: none;
}

.auth-card[b-7q88mwjma0] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.auth-brand[b-7q88mwjma0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.auth-brand-text[b-7q88mwjma0] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
    white-space: nowrap;
}

.auth-header[b-7q88mwjma0] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo[b-7q88mwjma0] {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
}

.auth-title[b-7q88mwjma0] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-7q88mwjma0] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.auth-form[b-7q88mwjma0] {
    margin-bottom: 2rem;
}

.form-group[b-7q88mwjma0] {
    margin-bottom: 1.5rem;
}

.form-label[b-7q88mwjma0] {
    display: block;
    font-weight: 600;
    color: #9fb0d0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input[b-7q88mwjma0] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #111a2e;
}

.form-input:focus[b-7q88mwjma0] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input[b-7q88mwjma0]::placeholder {
    color: rgba(159, 176, 208, 0.5);
}

/* Blazor InputText - dark theme (all inputs in auth form) */
.auth-email-alt[b-7q88mwjma0]  input:not([type="checkbox"]) {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e !important;
    box-sizing: border-box;
    color: #f3f7ff;
}

.auth-email-alt[b-7q88mwjma0]  input:not([type="checkbox"])::placeholder {
    color: rgba(159, 176, 208, 0.5);
}

.auth-email-alt[b-7q88mwjma0]  input:not([type="checkbox"]):focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.password-input-container[b-7q88mwjma0] {
    position: relative;
}

.password-toggle[b-7q88mwjma0] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9fb0d0;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.2s ease;
}

.password-toggle:hover[b-7q88mwjma0] {
    color: #3b82f6;
}

.form-options[b-7q88mwjma0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-container[b-7q88mwjma0] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.875rem;
    color: #9fb0d0;
}

.checkbox-container input[b-7q88mwjma0] {
    margin: 0 0.5rem 0 0;
    flex-shrink: 0;
    vertical-align: middle;
}

.checkbox-container[b-7q88mwjma0]  input[type="checkbox"] {
    margin: 0 0.5rem 0 0;
    flex-shrink: 0;
    vertical-align: middle;
}

.forgot-password[b-7q88mwjma0] {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password:hover[b-7q88mwjma0] {
    color: #2563eb;
}

.btn-full[b-7q88mwjma0] {
    width: 100%;
    justify-content: center;
}

.auth-footer[b-7q88mwjma0] {
    text-align: center;
    margin-bottom: 1rem;
}

.auth-footer p[b-7q88mwjma0] {
    color: #9fb0d0;
    font-size: 0.875rem;
}

.auth-link[b-7q88mwjma0] {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-7q88mwjma0] {
    color: #2563eb;
}

.divider[b-7q88mwjma0] {
    position: relative;
    text-align: center;
    margin: 1rem 0;
}

.divider[b-7q88mwjma0]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #24324d;
}

.divider span[b-7q88mwjma0] {
    background: #162033;
    padding: 0 1rem;
    color: #9fb0d0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.social-login[b-7q88mwjma0] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.divider-or[b-7q88mwjma0] {
    position: relative;
    text-align: center;
    margin: 1.25rem 0 1rem;
}

.divider-or[b-7q88mwjma0]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #24324d;
}

.divider-or span[b-7q88mwjma0] {
    background: #162033;
    padding: 0 1rem;
    color: #9fb0d0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.auth-email-alt[b-7q88mwjma0] {
    margin-top: 0.5rem;
}

.auth-email-alt .form-group[b-7q88mwjma0] {
    margin-top: 0.75rem;
}

.auth-email-alt .btn[b-7q88mwjma0] {
    margin-top: 1rem;
}

.auth-terms-checkbox[b-7q88mwjma0] {
    margin-top: 1rem;
}

.auth-signup-prompt[b-7q88mwjma0] {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: #9fb0d0;
    text-align: center;
}

.google-signin-wrapper[b-7q88mwjma0] {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 44px;
    border-radius: 0.25rem;
    overflow: hidden;
    cursor: pointer;
}

.google-signin-wrapper > div:first-child[b-7q88mwjma0] {
    position: relative;
    width: 100%;
    height: 100%;
}

.google-signin-wrapper iframe[b-7q88mwjma0] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.google-signin-custom-btn[b-7q88mwjma0] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    flex-direction: row;
    gap: 0;
    justify-content: flex-start;
    pointer-events: none;
    z-index: 0;
    color: white;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    overflow: hidden;
}

.google-signin-custom-btn-icon[b-7q88mwjma0] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 100%;
    min-width: 44px;
    background: white;
    border-radius: 0.25rem 0 0 0.25rem;
    border: 1px solid #4285F4;
}

.google-signin-custom-btn-icon svg[b-7q88mwjma0] {
    width: 20px;
    height: 20px;
}

.google-signin-custom-btn-text[b-7q88mwjma0] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 0;
    white-space: nowrap;
    padding: 0 16px;
    background: #4285F4;
    border-radius: 0 0.25rem 0.25rem 0;
}

.social-btn[b-7q88mwjma0] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    background: #111a2e;
    color: #f3f7ff;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.social-btn:hover[b-7q88mwjma0] {
    border-color: #3b82f6;
    background: #162033;
}

.google-btn:hover[b-7q88mwjma0] {
    border-color: #DB4437;
    color: #DB4437;
}

.github-btn:hover[b-7q88mwjma0] {
    border-color: #333;
    color: #333;
}


/* Password Match Indicator */
.password-match[b-7q88mwjma0] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #10B981;
}

.alert[b-7q88mwjma0] {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.alert-error[b-7q88mwjma0] {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #DC2626;
}

.alert-success[b-7q88mwjma0] {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #16A34A;
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-card[b-7q88mwjma0] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-title[b-7q88mwjma0] {
        font-size: 1.5rem;
    }
    
    .social-login[b-7q88mwjma0] {
        flex-direction: column;
    }
}
/* _content/package-tracker-landing/Components/Pages/Subscription.razor.rz.scp.css */
/* Subscription Page Styles */
.subscription-container[b-h8we4gq50u] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.subscription-container[b-h8we4gq50u]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.subscription-card[b-h8we4gq50u] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.subscription-header[b-h8we4gq50u] {
    text-align: center;
    margin-bottom: 2rem;
}

.subscription-title[b-h8we4gq50u] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.subscription-subtitle[b-h8we4gq50u] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.loading-container[b-h8we4gq50u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #9fb0d0;
}

.loading-container i[b-h8we4gq50u] {
    margin-bottom: 1rem;
    color: #3b82f6;
}

.loading-container p[b-h8we4gq50u] {
    margin: 0;
}

.subscription-info[b-h8we4gq50u] {
    margin-bottom: 2rem;
}

.subscription-badge-large[b-h8we4gq50u] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.subscription-badge-large i[b-h8we4gq50u] {
    font-size: 3rem;
}

.subscription-badge-large h2[b-h8we4gq50u] {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
}

.subscription-details[b-h8we4gq50u] {
    background: #111a2e;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.detail-row[b-h8we4gq50u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #24324d;
}

.detail-row:last-child[b-h8we4gq50u] {
    border-bottom: none;
}

.detail-label[b-h8we4gq50u] {
    font-weight: 600;
    color: #9fb0d0;
}

.detail-value[b-h8we4gq50u] {
    color: #f3f7ff;
    font-weight: 600;
}

.status-active[b-h8we4gq50u] {
    color: #10B981;
}

.status-inactive[b-h8we4gq50u] {
    color: #9fb0d0;
}

.status-cancelled[b-h8we4gq50u] {
    color: #EF4444;
}

.status-expired[b-h8we4gq50u] {
    color: #F59E0B;
}

.subscription-actions[b-h8we4gq50u] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.no-subscription[b-h8we4gq50u] {
    text-align: center;
}

.no-subscription i[b-h8we4gq50u] {
    color: #3b82f6;
    margin-bottom: 0.75rem;
}

.no-subscription h3[b-h8we4gq50u] {
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.no-subscription > p[b-h8we4gq50u] {
    color: #9fb0d0;
}

.pricing-grid[b-h8we4gq50u] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
    max-width: 100%;
}

.pricing-card[b-h8we4gq50u] {
    background: #162033;
    border: 2px solid #24324d;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover[b-h8we4gq50u] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured[b-h8we4gq50u] {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.pricing-card.featured:hover[b-h8we4gq50u] {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge[b-h8we4gq50u] {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header[b-h8we4gq50u] {
    text-align: center;
}

.pricing-header h4[b-h8we4gq50u] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.price[b-h8we4gq50u] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency[b-h8we4gq50u] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
}

.amount[b-h8we4gq50u] {
    font-size: 3rem;
    font-weight: 800;
    color: #f3f7ff;
}

.period[b-h8we4gq50u] {
    font-size: 1rem;
    color: #9fb0d0;
}

.pricing-header p[b-h8we4gq50u] {
    color: #9fb0d0;
    margin-top: 0.5rem;
}

.billing-copy[b-h8we4gq50u] {
    color: #dbe7ff;
    font-size: 0.95rem;
    font-weight: 600;
}

.savings[b-h8we4gq50u] {
    color: #10B981;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-features[b-h8we4gq50u] {
    margin: 0.75rem 0;
    text-align: left;
}

.pricing-features ul[b-h8we4gq50u] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li[b-h8we4gq50u] {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9fb0d0;
}

.pricing-features i[b-h8we4gq50u] {
    color: #10B981;
    font-size: 1rem;
}

.btn-full[b-h8we4gq50u] {
    width: 100%;
    justify-content: center;
}

.alert[b-h8we4gq50u] {
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-success[b-h8we4gq50u] {
    background: rgba(16, 185, 129, 0.1);
    color: #065F46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error[b-h8we4gq50u] {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-warning[b-h8we4gq50u] {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.alert-success i[b-h8we4gq50u] {
    color: #059669;
}

.alert-warning i[b-h8we4gq50u] {
    color: #D97706;
}

.alert i[b-h8we4gq50u] {
    font-size: 1.25rem;
}

.btn[b-h8we4gq50u] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    vertical-align: middle;
}

.btn i[b-h8we4gq50u] {
    display: contents;
    align-items: center;
    font-size: 1rem;
}

.btn-primary[b-h8we4gq50u] {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
}

.btn-primary:hover[b-h8we4gq50u] {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-secondary[b-h8we4gq50u] {
    background: #6B7280;
    color: white;
}

.btn-secondary:hover[b-h8we4gq50u] {
    background: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-danger[b-h8we4gq50u] {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.btn-danger:hover[b-h8we4gq50u] {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
}

.btn-danger:disabled[b-h8we4gq50u] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-danger:disabled:hover[b-h8we4gq50u] {
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .subscription-badge-large[b-h8we4gq50u] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .subscription-badge-large i[b-h8we4gq50u] {
        font-size: 2rem;
    }
    
    .subscription-badge-large h2[b-h8we4gq50u] {
        font-size: 1.5rem;
    }

    .pricing-grid[b-h8we4gq50u] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .pricing-card.featured[b-h8we4gq50u] {
        transform: scale(1);
    }

    .pricing-card.featured:hover[b-h8we4gq50u] {
        transform: translateY(-5px);
    }

    .amount[b-h8we4gq50u] {
        font-size: 2.5rem;
    }
}
/* _content/package-tracker-landing/Components/Pages/TrackingResults.razor.rz.scp.css */
.tracking-results-page[b-l7iry7okcs] {
    padding: 2rem 0 4rem;
    min-height: 60vh;
}

.tracking-layout[b-l7iry7okcs] {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

.tracking-main[b-l7iry7okcs] {
    min-width: 0;
}

.tracking-sidebar[b-l7iry7okcs] {
    position: sticky;
    top: 1.5rem;
}

/* Tracker form - matches Home hero panel (Blazor CSS isolation requires local definitions) */
.tracker-panel[b-l7iry7okcs] {
    width: 100%;
    min-height: 200px;
    background: linear-gradient(180deg, rgba(22, 32, 51, 0.98), rgba(17, 26, 46, 0.98));
    border: 1px solid var(--border, #24324d);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.10);
    padding: 2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.tracker-panel[b-l7iry7okcs]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.22);
    pointer-events: none;
}

.tracker-panel-header[b-l7iry7okcs] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tracker-logo[b-l7iry7okcs] {
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.tracker-panel-title[b-l7iry7okcs] {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text, #f3f7ff);
    letter-spacing: -0.01em;
}

.tracker-form[b-l7iry7okcs] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tracker-field[b-l7iry7okcs] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.tracker-label[b-l7iry7okcs] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted, #9fb0d0);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tracker-optional[b-l7iry7okcs] {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent, #60a5fa);
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 4px;
    padding: 1px 6px;
    text-transform: none;
    letter-spacing: 0;
}

.tracker-input[b-l7iry7okcs] {
    background: rgba(11, 18, 32, 0.7);
    border: 1px solid var(--border, #24324d);
    border-radius: 10px;
    color: var(--text, #f3f7ff);
    font-size: 0.9375rem;
    padding: 0.65rem 0.875rem;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    outline: none;
}

.tracker-input[b-l7iry7okcs]::placeholder {
    color: rgba(159, 176, 208, 0.45);
}

.tracker-input:focus[b-l7iry7okcs] {
    border-color: var(--primary, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    background: rgba(17, 26, 46, 0.95);
}

.tracker-btn[b-l7iry7okcs] {
    background: linear-gradient(180deg, #4a90ff 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    width: 100%;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35), 0 0 24px rgba(59, 130, 246, 0.20);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    gap: 0.5rem;
}

.tracker-btn:hover[b-l7iry7okcs] {
    background: linear-gradient(180deg, #5aa0ff 0%, #2f6ef0 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5), 0 0 36px rgba(59, 130, 246, 0.28);
    transform: translateY(-1px);
}

.tracker-hint[b-l7iry7okcs] {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(159, 176, 208, 0.55);
    margin: 0;
}

.tracking-results-form[b-l7iry7okcs] {
    max-width: 100%;
}

/* Search History card */
.search-history-card[b-l7iry7okcs] {
    margin-top: 1.5rem;
}

.search-history-card.search-history-collapsed[b-l7iry7okcs] {
    min-height: unset;
    padding: 1rem 1.5rem;
    gap: 0;
}

.search-history-header[b-l7iry7okcs] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
    font: inherit;
    text-align: left;
    transition: opacity 0.15s ease;
}

.search-history-header:hover[b-l7iry7okcs] {
    opacity: 0.9;
}

.search-history-header .fa-history[b-l7iry7okcs] {
    color: var(--accent, #60a5fa);
}

.search-history-header .tracker-panel-title[b-l7iry7okcs] {
    flex: 1;
}

.search-history-chevron[b-l7iry7okcs] {
    font-size: 0.75rem;
    color: var(--text-muted, #9fb0d0);
    transition: transform 0.2s ease;
}

.search-history-chevron.expanded[b-l7iry7okcs] {
    transform: rotate(180deg);
}

.search-history-list[b-l7iry7okcs] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: none;
}

.search-history-list[b-l7iry7okcs]::-webkit-scrollbar {
    display: none;
}

.search-history-item[b-l7iry7okcs] {
    background: rgba(11, 18, 32, 0.5);
    border: 1px solid rgba(36, 50, 77, 0.6);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.search-history-item-main[b-l7iry7okcs] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.search-history-number[b-l7iry7okcs] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text, #f3f7ff);
}

.search-history-carrier[b-l7iry7okcs] {
    font-size: 0.8rem;
    color: var(--text-muted, #9fb0d0);
}

.search-history-actions[b-l7iry7okcs] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.search-history-btn[b-l7iry7okcs] {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: opacity 0.15s ease;
}

.search-history-btn:disabled[b-l7iry7okcs] {
    opacity: 0.6;
    cursor: not-allowed;
}

.search-history-btn-primary[b-l7iry7okcs] {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent, #60a5fa);
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.search-history-btn-primary:hover:not(:disabled)[b-l7iry7okcs] {
    background: rgba(59, 130, 246, 0.3);
}

.search-history-btn-remove[b-l7iry7okcs] {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.search-history-btn-remove:hover:not(:disabled)[b-l7iry7okcs] {
    background: rgba(239, 68, 68, 0.25);
}

.tracking-loading[b-l7iry7okcs] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 4.5rem 1.5rem;
    color: var(--text-muted, #9fb0d0);
    text-align: center;
    border: 1px solid rgba(36, 50, 77, 0.8);
    border-radius: 20px;
    background:
        radial-gradient(circle at top, rgba(96, 165, 250, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(22, 32, 51, 0.94), rgba(13, 20, 33, 0.96));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.tracking-loading-orb[b-l7iry7okcs] {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.26), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(96, 165, 250, 0.24);
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.18);
}

.tracking-loading i[b-l7iry7okcs] {
    color: var(--accent, #60a5fa);
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.4));
}

.tracking-loading-copy[b-l7iry7okcs] {
    max-width: 420px;
}

.tracking-loading-copy h2[b-l7iry7okcs] {
    margin: 0 0 0.6rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text, #f3f7ff);
    letter-spacing: -0.02em;
}

.tracking-loading-copy p[b-l7iry7okcs] {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

.tracking-empty[b-l7iry7okcs] {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted, #9fb0d0);
}

.tracking-result-content[b-l7iry7okcs] {
    max-width: 720px;
}

.tracking-header[b-l7iry7okcs] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(36, 50, 77, 0.8);
}

.tracking-header-main[b-l7iry7okcs] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tracking-number[b-l7iry7okcs] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #f3f7ff);
    margin: 0;
    letter-spacing: 0.02em;
    text-shadow: 0 0 12px rgba(96, 165, 250, 0.15);
}

.tracking-carrier[b-l7iry7okcs] {
    font-size: 0.9375rem;
    color: var(--text-muted, #9fb0d0);
}

.tracking-status-badge[b-l7iry7okcs] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(96, 165, 250, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: var(--accent, #60a5fa);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2), 0 0 40px rgba(96, 165, 250, 0.08);
}

.tracking-section[b-l7iry7okcs] {
    margin-bottom: 2.5rem;
}

.tracking-section-title[b-l7iry7okcs] {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text, #f3f7ff);
    margin: 0 0 1.25rem;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.1);
}

.tracking-timeline[b-l7iry7okcs] {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(59, 130, 246, 0.35);
    box-shadow: -1px 0 12px rgba(59, 130, 246, 0.1);
}

.timeline-event[b-l7iry7okcs] {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-event:last-child[b-l7iry7okcs] {
    padding-bottom: 0;
}

.timeline-dot[b-l7iry7okcs] {
    position: absolute;
    left: -1.5rem;
    top: 0.35rem;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent, #60a5fa);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25), 0 0 12px rgba(96, 165, 250, 0.5), 0 0 24px rgba(59, 130, 246, 0.25);
}

.timeline-content[b-l7iry7okcs] {
    background: linear-gradient(180deg, rgba(28, 42, 67, 0.6) 0%, rgba(22, 32, 51, 0.8) 100%);
    border: 1px solid rgba(36, 50, 77, 0.7);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.timeline-content:hover[b-l7iry7okcs] {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.08);
}

.timeline-event-delivered .timeline-dot[b-l7iry7okcs] {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3), 0 0 12px rgba(34, 197, 94, 0.5), 0 0 24px rgba(34, 197, 94, 0.3);
}

.timeline-event-delivered .timeline-content[b-l7iry7okcs] {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.15), 0 0 40px rgba(34, 197, 94, 0.08);
}

.timeline-event-delivered .timeline-content:hover[b-l7iry7okcs] {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.2), 0 0 48px rgba(34, 197, 94, 0.12);
}

.timeline-date[b-l7iry7okcs] {
    font-size: 0.8125rem;
    color: var(--text-muted, #9fb0d0);
    margin-bottom: 0.35rem;
}

.timeline-description[b-l7iry7okcs] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text, #f3f7ff);
    margin-bottom: 0.25rem;
}

.timeline-location[b-l7iry7okcs] {
    font-size: 0.875rem;
    color: var(--text-muted, #9fb0d0);
    margin-top: 0.25rem;
}

.timeline-location i[b-l7iry7okcs] {
    margin-right: 0.35rem;
    opacity: 0.8;
}

.timeline-stage[b-l7iry7okcs] {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent, #60a5fa);
    background: rgba(59, 130, 246, 0.12);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.tracking-addresses[b-l7iry7okcs] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.address-card[b-l7iry7okcs] {
    background: linear-gradient(180deg, rgba(28, 42, 67, 0.5) 0%, rgba(22, 32, 51, 0.7) 100%);
    border: 1px solid rgba(36, 50, 77, 0.7);
    border-radius: 10px;
    padding: 1.25rem;
    transition: border-color 0.2s ease;
}

.address-card:hover[b-l7iry7okcs] {
    border-color: rgba(59, 130, 246, 0.25);
}

.address-card h3[b-l7iry7okcs] {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text, #f3f7ff);
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-card h3 i[b-l7iry7okcs] {
    color: var(--accent, #60a5fa);
}

.address-text[b-l7iry7okcs] {
    font-size: 0.875rem;
    color: var(--text-muted, #9fb0d0);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .tracking-layout[b-l7iry7okcs] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tracking-sidebar[b-l7iry7okcs] {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .tracking-results-page[b-l7iry7okcs] {
        padding: 1.5rem 0 3rem;
    }

    .tracking-layout[b-l7iry7okcs] {
        gap: 1.5rem;
    }

    .tracking-header[b-l7iry7okcs] {
        flex-direction: column;
        align-items: flex-start;
    }

    .tracking-number[b-l7iry7okcs] {
        font-size: 1.25rem;
    }

    .tracking-timeline[b-l7iry7okcs] {
        padding-left: 1.25rem;
    }

    .timeline-dot[b-l7iry7okcs] {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .tracker-panel[b-l7iry7okcs] {
        padding: 1.5rem 1.25rem;
    }

    .tracking-number[b-l7iry7okcs] {
        font-size: 1.125rem;
        word-break: break-all;
    }
}
/* _content/package-tracker-landing/Components/Pages/TrackPreview.razor.rz.scp.css */
.preview-page[b-1u17g8t8q0] {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 69, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 30%),
        linear-gradient(180deg, #09111f 0%, #0c1527 52%, #0f1b30 100%);
    color: #f3f7ff;
    padding: 1.4rem 1rem 3rem;
}

.preview-shell[b-1u17g8t8q0] {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.preview-hero[b-1u17g8t8q0],
.preview-search-card[b-1u17g8t8q0],
.preview-result-card[b-1u17g8t8q0] {
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(11, 18, 32, 0.76);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.preview-hero[b-1u17g8t8q0] {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 1.25rem;
    align-items: center;
    border-radius: 1.75rem;
    padding: 1.35rem 1.45rem;
}

.preview-kicker[b-1u17g8t8q0],
.preview-progress-label[b-1u17g8t8q0],
.preview-result-label[b-1u17g8t8q0] {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.52rem;
    color: #8ca2c8;
}

.preview-progress-label-search[b-1u17g8t8q0] {
    font-size: 0.58rem;
    letter-spacing: 0.13em;
}

.preview-result-label-card[b-1u17g8t8q0] {
    font-size: 0.5rem;
    letter-spacing: 0.11em;
}

.preview-hero h1[b-1u17g8t8q0],
.preview-pricing-copy h2[b-1u17g8t8q0] {
    margin: 0.35rem 0 0.75rem;
    font-size: clamp(1.7rem, 3.5vw, 3rem);
    line-height: 1;
}

.preview-copy p[b-1u17g8t8q0],
.preview-pricing-copy p[b-1u17g8t8q0],
.preview-result-top p[b-1u17g8t8q0] {
    margin: 0;
    color: #a8b8d6;
    line-height: 1.5;
}

.preview-number-card[b-1u17g8t8q0] {
    border-radius: 1.5rem;
    padding: 1.1rem 1.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    display: grid;
    gap: 0.45rem;
    max-width: 320px;
    justify-self: end;
}

.preview-number-card strong[b-1u17g8t8q0] {
    font-size: 1.12rem;
    letter-spacing: 0.08em;
}

.preview-number-label[b-1u17g8t8q0],
.preview-carrier[b-1u17g8t8q0] {
    color: #8ca2c8;
}

.preview-main[b-1u17g8t8q0] {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1rem;
    align-items: start;
}

.preview-search-card[b-1u17g8t8q0],
.preview-result-card[b-1u17g8t8q0] {
    border-radius: 1.5rem;
    padding: 1.15rem;
}

.preview-search-card[b-1u17g8t8q0] {
    min-height: 100%;
}

.preview-progress-header[b-1u17g8t8q0],
.preview-result-top[b-1u17g8t8q0],
.preview-status-row[b-1u17g8t8q0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.preview-progress-header h2[b-1u17g8t8q0],
.preview-result-top h2[b-1u17g8t8q0] {
    margin: 0.35rem 0 0.4rem;
    font-size: 1.2rem;
}

.preview-progress-state[b-1u17g8t8q0],
.preview-lock-badge[b-1u17g8t8q0],
.preview-pill[b-1u17g8t8q0] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(17, 26, 46, 0.75);
    color: #d9e4f5;
    padding: 0.42rem 0.72rem;
    font-size: 0.82rem;
}

.preview-progress-bar[b-1u17g8t8q0] {
    height: 0.7rem;
    margin: 0.9rem 0 1rem;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.12);
}

.preview-progress-bar-fill[b-1u17g8t8q0] {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ff7a45, #ffb36a 55%, #5ba7ff 100%);
    transition: width 0.45s ease;
}

.preview-loader[b-1u17g8t8q0] {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 3px solid rgba(91, 167, 255, 0.2);
    border-top-color: #5ba7ff;
    border-right-color: #ff7a45;
    animation: preview-loader-spin-b-1u17g8t8q0 0.9s linear infinite;
}

.preview-loader-inline[b-1u17g8t8q0] {
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.preview-steps[b-1u17g8t8q0] {
    display: grid;
    gap: 0.68rem;
}

.preview-step[b-1u17g8t8q0] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    opacity: 0.45;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.preview-step.active[b-1u17g8t8q0],
.preview-step.completed[b-1u17g8t8q0] {
    opacity: 1;
    transform: translateX(0.2rem);
}

.preview-step-dot[b-1u17g8t8q0] {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: 0.4rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.25);
    box-shadow: 0 0 0 0 rgba(255, 122, 69, 0.5);
}

.preview-step.active .preview-step-dot[b-1u17g8t8q0],
.preview-step.completed .preview-step-dot[b-1u17g8t8q0] {
    background: #ff7a45;
    box-shadow: 0 0 0 8px rgba(255, 122, 69, 0.12);
}

.preview-step-title[b-1u17g8t8q0] {
    font-weight: 700;
    font-size: 0.94rem;
}

.preview-step-copy[b-1u17g8t8q0] {
    color: #8ca2c8;
    line-height: 1.35;
    font-size: 0.88rem;
}

.preview-status-row[b-1u17g8t8q0] {
    margin: 0.9rem 0;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.preview-pill.success[b-1u17g8t8q0] {
    border-color: rgba(34, 197, 94, 0.35);
    color: #d6f5df;
}

.preview-pill.muted[b-1u17g8t8q0] {
    color: #d7e0ef;
}

.preview-timeline[b-1u17g8t8q0] {
    display: grid;
    gap: 0.72rem;
    margin-top: 0.95rem;
    position: relative;
}

.preview-timeline-row[b-1u17g8t8q0] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.9rem;
    align-items: center;
    border-radius: 1rem;
    padding: 0.7rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    filter: blur(7px);
    opacity: 0.55;
    transition: filter 0.45s ease, opacity 0.45s ease;
}

.preview-timeline.ready .preview-timeline-row[b-1u17g8t8q0] {
    opacity: 1;
}

.preview-unlock-cta[b-1u17g8t8q0] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.preview-unlock-cta .btn[b-1u17g8t8q0] {
    pointer-events: auto;
    min-width: 150px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.28);
}

.preview-timeline-dot[b-1u17g8t8q0] {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 999px;
    background: #5ba7ff;
}

@keyframes preview-loader-spin-b-1u17g8t8q0 {
    to { transform: rotate(360deg); }
}

.preview-timeline-content[b-1u17g8t8q0] {
    display: grid;
    gap: 0.45rem;
}

.preview-line[b-1u17g8t8q0] {
    height: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.18), rgba(148, 163, 184, 0.08));
}

.preview-line-short[b-1u17g8t8q0] {
    width: 46%;
}

.preview-pricing-grid[b-1u17g8t8q0] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.preview-plan[b-1u17g8t8q0] {
    position: relative;
    border-radius: 1.35rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(12, 20, 36, 0.82);
    padding: 1.5rem;
}

.preview-plan.featured[b-1u17g8t8q0] {
    border-color: rgba(255, 122, 69, 0.34);
    box-shadow: inset 0 0 0 1px rgba(255, 122, 69, 0.08);
}

.preview-plan-badge[b-1u17g8t8q0] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: 999px;
    background: rgba(255, 122, 69, 0.14);
    color: #ffd3c2;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
}

.preview-plan h3[b-1u17g8t8q0] {
    margin: 0;
    font-size: 1.35rem;
}

.preview-plan-price[b-1u17g8t8q0] {
    margin: 0.65rem 0 0.55rem;
    font-size: 1.9rem;
    font-weight: 800;
}

.preview-plan p[b-1u17g8t8q0],
.preview-plan ul[b-1u17g8t8q0] {
    color: #a8b8d6;
}

.preview-plan ul[b-1u17g8t8q0] {
    margin: 1rem 0 1.35rem;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.6rem;
}

.preview-plan .btn-outline[b-1u17g8t8q0] {
    color: #e7eefc;
    background: linear-gradient(180deg, rgba(30, 42, 68, 0.96), rgba(17, 26, 46, 0.96));
    border: 1px solid rgba(91, 167, 255, 0.32);
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.preview-plan .btn-outline:hover[b-1u17g8t8q0] {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(43, 58, 89, 0.98), rgba(23, 35, 58, 0.98));
    border-color: rgba(91, 167, 255, 0.48);
}

.preview-plan .btn-outline:disabled[b-1u17g8t8q0] {
    color: rgba(231, 238, 252, 0.58);
    background: rgba(17, 26, 46, 0.7);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: none;
}

.preview-modal-backdrop[b-1u17g8t8q0] {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    background: rgba(7, 12, 22, 0.74);
    backdrop-filter: blur(12px);
}

.preview-modal[b-1u17g8t8q0] {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    border-radius: 1.6rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.98), rgba(11, 18, 32, 0.94));
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.34);
    padding: 1.5rem;
}

.preview-modal-copy[b-1u17g8t8q0] {
    margin-bottom: 1.2rem;
    padding-right: 2.2rem;
}

.preview-modal-copy h2[b-1u17g8t8q0] {
    margin: 0.4rem 0 0.65rem;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.preview-modal-copy p[b-1u17g8t8q0] {
    margin: 0;
    color: #a8b8d6;
    line-height: 1.55;
}

.preview-modal-close[b-1u17g8t8q0] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    background: rgba(17, 26, 46, 0.82);
    color: #d9e4f5;
    cursor: pointer;
}

@media (max-width: 900px) {
    .preview-hero[b-1u17g8t8q0],
    .preview-main[b-1u17g8t8q0],
    .preview-pricing-grid[b-1u17g8t8q0] {
        grid-template-columns: 1fr;
    }

    .preview-modal[b-1u17g8t8q0] {
        padding: 1.15rem;
    }
}

@media (max-width: 640px) {
    .preview-modal-backdrop[b-1u17g8t8q0] {
        align-items: flex-start;
        padding: 0.75rem;
    }

    .preview-modal[b-1u17g8t8q0] {
        width: 100%;
        max-height: calc(100vh - 1.5rem);
        border-radius: 1.2rem;
        padding: 1rem 0.95rem;
    }

    .preview-modal-copy[b-1u17g8t8q0] {
        margin-bottom: 1rem;
        padding-right: 0;
    }

    .preview-modal-copy h2[b-1u17g8t8q0] {
        margin: 0.3rem 0 0.55rem;
        font-size: 1.45rem;
        line-height: 1.15;
        padding-right: 2rem;
    }

    .preview-modal-copy p[b-1u17g8t8q0] {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .preview-modal-close[b-1u17g8t8q0] {
        top: 0.75rem;
        right: 0.75rem;
        width: 2.15rem;
        height: 2.15rem;
    }

    .preview-pricing-grid[b-1u17g8t8q0] {
        gap: 0.8rem;
    }

    .preview-plan[b-1u17g8t8q0] {
        padding: 1.1rem;
        border-radius: 1.1rem;
    }

    .preview-plan-badge[b-1u17g8t8q0] {
        top: 0.85rem;
        right: 0.85rem;
        padding: 0.3rem 0.55rem;
        font-size: 0.72rem;
    }

    .preview-plan h3[b-1u17g8t8q0] {
        font-size: 1.2rem;
        padding-right: 4.5rem;
    }

    .preview-plan-price[b-1u17g8t8q0] {
        margin: 0.55rem 0 0.45rem;
        font-size: 1.55rem;
        line-height: 1.15;
    }

    .preview-plan p[b-1u17g8t8q0],
    .preview-plan ul[b-1u17g8t8q0] {
        font-size: 0.95rem;
    }

    .preview-plan ul[b-1u17g8t8q0] {
        margin: 0.85rem 0 1rem;
        padding-left: 1rem;
        gap: 0.45rem;
    }
}
/* _content/package-tracker-landing/Components/Pages/UnlockTracking.razor.rz.scp.css */
.unlock-page[b-62y9dooy9x] {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 69, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 30%),
        linear-gradient(180deg, #09111f 0%, #0c1527 52%, #0f1b30 100%);
    color: #f3f7ff;
    padding: 2rem 1rem 3rem;
}

.unlock-shell[b-62y9dooy9x] {
    width: min(980px, 100%);
    margin: 0 auto;
    border-radius: 1.8rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(11, 18, 32, 0.78);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
    padding: 1.6rem;
}

.unlock-kicker[b-62y9dooy9x] {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
    color: #8ca2c8;
}

.unlock-hero h1[b-62y9dooy9x] {
    margin: 0.45rem 0 0.7rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
}

.unlock-hero p[b-62y9dooy9x] {
    margin: 0;
    color: #a8b8d6;
    line-height: 1.55;
    font-size: 1.05rem;
}

.unlock-pricing-grid[b-62y9dooy9x] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.unlock-plan[b-62y9dooy9x] {
    position: relative;
    border-radius: 1.35rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(12, 20, 36, 0.82);
    padding: 1.5rem;
}

.unlock-plan.featured[b-62y9dooy9x] {
    border-color: rgba(255, 122, 69, 0.34);
    box-shadow: inset 0 0 0 1px rgba(255, 122, 69, 0.08);
}

.unlock-plan-badge[b-62y9dooy9x] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: 999px;
    background: rgba(255, 122, 69, 0.14);
    color: #ffd3c2;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
}

.unlock-plan h3[b-62y9dooy9x] {
    margin: 0;
    font-size: 1.35rem;
}

.unlock-plan-price[b-62y9dooy9x] {
    margin: 0.65rem 0 0.55rem;
    font-size: 1.9rem;
    font-weight: 800;
}

.unlock-plan p[b-62y9dooy9x],
.unlock-plan ul[b-62y9dooy9x] {
    color: #a8b8d6;
}

.unlock-plan ul[b-62y9dooy9x] {
    margin: 1rem 0 1.35rem;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.6rem;
}

.unlock-plan .btn-outline[b-62y9dooy9x] {
    color: #e7eefc;
    background: linear-gradient(180deg, rgba(30, 42, 68, 0.96), rgba(17, 26, 46, 0.96));
    border: 1px solid rgba(91, 167, 255, 0.32);
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.unlock-plan .btn-outline:hover[b-62y9dooy9x] {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(43, 58, 89, 0.98), rgba(23, 35, 58, 0.98));
    border-color: rgba(91, 167, 255, 0.48);
}

.unlock-plan .btn-outline:disabled[b-62y9dooy9x] {
    color: rgba(231, 238, 252, 0.58);
    background: rgba(17, 26, 46, 0.7);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: none;
}

@media (max-width: 900px) {
    .unlock-pricing-grid[b-62y9dooy9x] {
        grid-template-columns: 1fr;
    }
}
/* _content/package-tracker-landing/Components/Pages/Welcome.razor.rz.scp.css */
.welcome-page[b-jfxe6anisb] {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 69, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 30%),
        linear-gradient(180deg, #09111f 0%, #0c1527 52%, #0f1b30 100%);
    color: #f3f7ff;
    padding: 1.25rem 1rem 2rem;
}

.welcome-hero[b-jfxe6anisb],
.welcome-steps-card[b-jfxe6anisb] {
    width: min(1180px, 100%);
    margin: 0 auto;
    border-radius: 1.8rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(11, 18, 32, 0.78);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
}

.welcome-hero[b-jfxe6anisb] {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.15rem;
    align-items: center;
    padding: 1.2rem 1.25rem;
}

.welcome-kicker[b-jfxe6anisb] {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    color: #8ca2c8;
}

.welcome-copy h1[b-jfxe6anisb],
.welcome-section-head h2[b-jfxe6anisb] {
    margin: 0.3rem 0 0.55rem;
    font-size: clamp(1.75rem, 3.2vw, 3rem);
    line-height: 1;
}

.welcome-copy p[b-jfxe6anisb],
.welcome-section-head p[b-jfxe6anisb],
.welcome-step p[b-jfxe6anisb],
.welcome-pin-callout span[b-jfxe6anisb],
.welcome-gif-note[b-jfxe6anisb] {
    margin: 0;
    color: #a8b8d6;
    line-height: 1.45;
}

.welcome-toolbar-stage[b-jfxe6anisb] {
    display: none;
}

.welcome-instructions[b-jfxe6anisb] {
    width: min(1180px, 100%);
    margin: 0.9rem auto 0;
    display: block;
}

.welcome-steps-card[b-jfxe6anisb] {
    margin: 0;
    padding: 0.85rem 0.95rem 0.95rem;
    background:
        radial-gradient(circle at top right, rgba(91, 167, 255, 0.1), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 182, 91, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(14, 24, 42, 0.98), rgba(11, 18, 32, 0.94));
}

.welcome-gif-hero-frame[b-jfxe6anisb] {
    border-radius: 1.3rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(8, 14, 26, 0.92);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.welcome-section-head h2[b-jfxe6anisb] {
    margin: 0.2rem 0 0.35rem;
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.welcome-gif[b-jfxe6anisb] {
    width: 100%;
    display: block;
    aspect-ratio: 832 / 647;
    object-fit: cover;
    max-height: 420px;
}

.welcome-gif-note[b-jfxe6anisb] {
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.welcome-gif-note code[b-jfxe6anisb] {
    color: #dbe7ff;
}

.welcome-steps[b-jfxe6anisb] {
    margin-top: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.welcome-step[b-jfxe6anisb] {
    display: grid;
    gap: 0.35rem;
    justify-items: start;
    align-content: start;
    padding: 0.7rem 0.8rem;
    border-radius: 0.95rem;
    background:
        linear-gradient(180deg, rgba(22, 34, 58, 0.96), rgba(14, 22, 39, 0.94));
    border: 1px solid rgba(91, 167, 255, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 18px 34px rgba(0, 0, 0, 0.18);
    min-height: 82px;
    flex: 1 1 210px;
}

.welcome-step-title[b-jfxe6anisb] {
    font-size: 0.92rem;
    font-weight: 800;
    text-align: left;
    color: #f4f7ff;
}

.welcome-step-copy[b-jfxe6anisb] {
    color: #9fb0d0;
    line-height: 1.25;
    font-size: 0.75rem;
}

.welcome-step-arrow[b-jfxe6anisb] {
    position: relative;
    width: 36px;
    height: 14px;
    flex: 0 0 auto;
}

.welcome-step-arrow-line[b-jfxe6anisb] {
    position: absolute;
    top: 50%;
    left: 0;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 182, 91, 0.28), rgba(255, 182, 91, 0.95));
    transform: translateY(-50%);
}

.welcome-step-arrow-glow[b-jfxe6anisb] {
    position: absolute;
    top: 50%;
    left: 7px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 182, 91, 0.28), transparent 72%);
    transform: translateY(-50%);
}

.welcome-step-arrow-head[b-jfxe6anisb] {
    position: absolute;
    top: 50%;
    right: 3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(255, 182, 91, 0.95);
    border-right: 2px solid rgba(255, 182, 91, 0.95);
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 960px) {
    .welcome-hero[b-jfxe6anisb],
    .welcome-instructions[b-jfxe6anisb] {
        grid-template-columns: 1fr;
    }

    .welcome-steps[b-jfxe6anisb] {
        flex-direction: column;
        align-items: stretch;
    }

    .welcome-step-arrow[b-jfxe6anisb] {
        align-self: center;
        transform: rotate(90deg);
    }
}
