/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Styles */
.page-wrapper[b-67gsi8d42w] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content[b-67gsi8d42w] {
    flex: 1;
    padding-top: 70px;
}

/* Footer */
.site-footer[b-67gsi8d42w] {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 3rem 0;
    margin-top: auto;
}

.footer-content[b-67gsi8d42w] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo[b-67gsi8d42w] {
    height: 35px;
    width: auto;
}

.footer-links[b-67gsi8d42w] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

    .footer-links a[b-67gsi8d42w] {
        color: #6B7280;
        font-size: 0.95rem;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover[b-67gsi8d42w] {
            color: #1D3557;
        }

.footer-copyright p[b-67gsi8d42w] {
    color: #9CA3AF;
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-links[b-67gsi8d42w] {
        gap: 1.25rem;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Navbar */
.navbar[b-0yvhuuwzew] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
}

.nav-container[b-0yvhuuwzew] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand[b-0yvhuuwzew] {
    display: flex;
    align-items: center;
}

.nav-logo[b-0yvhuuwzew] {
    height: 40px;
    width: auto;
}

.nav-menu[b-0yvhuuwzew] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link[b-0yvhuuwzew] {
    font-weight: 500;
    font-size: 0.95rem;
    color: #4B5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .nav-link:hover[b-0yvhuuwzew] {
        color: #1D3557;
    }

.nav-btn[b-0yvhuuwzew] {
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
}

/* Mobile toggle button */
.nav-toggle[b-0yvhuuwzew] {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.toggle-line[b-0yvhuuwzew] {
    width: 22px;
    height: 2px;
    background: #1D3557;
    transition: all 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-toggle[b-0yvhuuwzew] {
        display: flex;
    }

    .nav-menu[b-0yvhuuwzew] {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid #e5e7eb;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

        .nav-menu.open[b-0yvhuuwzew] {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-rjufsz0v35],
.components-reconnect-repeated-attempt-visible[b-rjufsz0v35],
.components-reconnect-failed-visible[b-rjufsz0v35],
.components-pause-visible[b-rjufsz0v35],
.components-resume-failed-visible[b-rjufsz0v35],
.components-rejoining-animation[b-rjufsz0v35] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-rjufsz0v35],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-rjufsz0v35],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-rjufsz0v35],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-rjufsz0v35],
#components-reconnect-modal.components-reconnect-retrying[b-rjufsz0v35],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-rjufsz0v35],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-rjufsz0v35],
#components-reconnect-modal.components-reconnect-failed[b-rjufsz0v35],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-rjufsz0v35] {
    display: block;
}


#components-reconnect-modal[b-rjufsz0v35] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-rjufsz0v35 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-rjufsz0v35 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-rjufsz0v35 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-rjufsz0v35]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-rjufsz0v35 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-rjufsz0v35 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-rjufsz0v35 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-rjufsz0v35 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-rjufsz0v35] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-rjufsz0v35] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-rjufsz0v35] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-rjufsz0v35] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-rjufsz0v35] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-rjufsz0v35] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-rjufsz0v35] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-rjufsz0v35 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-rjufsz0v35] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-rjufsz0v35 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
/* About Hero */
.about-hero[b-tku0d2xwzm] {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a3a5c 0%, #224a73 100%);
    text-align: center;
}

    .about-hero h1[b-tku0d2xwzm] {
        font-size: 2.8rem;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .about-hero .hero-text[b-tku0d2xwzm] {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.85);
        max-width: 600px;
        margin: 0 auto;
    }

/* Story Section */
.story-section[b-tku0d2xwzm] {
    background: #ffffff;
}

.story-grid[b-tku0d2xwzm] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2[b-tku0d2xwzm] {
    color: #1D3557;
    margin-bottom: 0.5rem;
}

.divider-left[b-tku0d2xwzm] {
    width: 60px;
    height: 3px;
    background: #2BBCC0;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.story-content p[b-tku0d2xwzm] {
    color: #4B5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-stats[b-tku0d2xwzm] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box[b-tku0d2xwzm] {
    background: linear-gradient(135deg, #1a3a5c 0%, #224a73 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-number[b-tku0d2xwzm] {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2BBCC0;
}

.stat-label[b-tku0d2xwzm] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

/* Services Section */
.services-section[b-tku0d2xwzm] {
    background: #f9fafb;
}

.services-grid[b-tku0d2xwzm] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card[b-tku0d2xwzm] {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

    .service-card:hover[b-tku0d2xwzm] {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border-color: #2BBCC0;
    }

.service-icon[b-tku0d2xwzm] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3[b-tku0d2xwzm] {
    color: #1D3557;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-card p[b-tku0d2xwzm] {
    color: #6B7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Section */
.contact-section[b-tku0d2xwzm] {
    background: #ffffff;
}

.contact-box[b-tku0d2xwzm] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2[b-tku0d2xwzm] {
    color: #1D3557;
    margin-bottom: 0.5rem;
}

.contact-details[b-tku0d2xwzm] {
    margin-bottom: 2rem;
}

    .contact-details p[b-tku0d2xwzm] {
        color: #4B5563;
        margin-bottom: 0.5rem;
    }

    .contact-details a[b-tku0d2xwzm] {
        color: #2BBCC0;
    }

        .contact-details a:hover[b-tku0d2xwzm] {
            color: #1a3a5c;
        }

.btn-nav[b-tku0d2xwzm] {
    background: linear-gradient(135deg, #1a3a5c 0%, #224a73 100%);
    color: #ffffff;
}

    .btn-nav:hover[b-tku0d2xwzm] {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(26, 58, 92, 0.3);
    }

/* Responsive */
@media (max-width: 768px) {
    .about-hero[b-tku0d2xwzm] {
        padding: 120px 0 60px;
    }

        .about-hero h1[b-tku0d2xwzm] {
            font-size: 2rem;
        }

    .story-grid[b-tku0d2xwzm] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-stats[b-tku0d2xwzm] {
        flex-direction: row;
    }

    .stat-box[b-tku0d2xwzm] {
        flex: 1;
    }

    .services-grid[b-tku0d2xwzm] {
        grid-template-columns: 1fr;
    }

    .contact-box[b-tku0d2xwzm] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* Nav.is branding */
.powered-by[b-tku0d2xwzm] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

    .powered-by span[b-tku0d2xwzm] {
        color: #9CA3AF;
        font-size: 0.95rem;
    }

.nav-logo[b-tku0d2xwzm] {
    height: 30px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

    .nav-logo:hover[b-tku0d2xwzm] {
        opacity: 1;
    }
/* /Components/Pages/Admin/Messages.razor.rz.scp.css */
.admin-hero[b-bihsnj08ob] {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #1a3a5c 0%, #224a73 100%);
    text-align: center;
}

    .admin-hero h1[b-bihsnj08ob] {
        font-size: 2rem;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .admin-hero .hero-text[b-bihsnj08ob] {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
    }

.admin-section[b-bihsnj08ob] {
    background: #f9fafb;
    min-height: 60vh;
    padding: 40px 0 80px;
}

.admin-header[b-bihsnj08ob] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-small[b-bihsnj08ob] {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-danger[b-bihsnj08ob] {
    background: #ef4444;
    color: #ffffff;
    border: none;
}

    .btn-danger:hover[b-bihsnj08ob] {
        background: #dc2626;
    }

.empty-state[b-bihsnj08ob] {
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

    .empty-state p[b-bihsnj08ob] {
        color: #6B7280;
    }

.messages-list[b-bihsnj08ob] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-card[b-bihsnj08ob] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}

    .message-card.unread[b-bihsnj08ob] {
        border-left: 4px solid #2BBCC0;
    }

.message-header[b-bihsnj08ob] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.message-info[b-bihsnj08ob] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .message-info strong[b-bihsnj08ob] {
        color: #1D3557;
        font-size: 1.1rem;
    }

.message-email[b-bihsnj08ob] {
    color: #2BBCC0;
    font-size: 0.9rem;
}

.message-phone[b-bihsnj08ob] {
    color: #6B7280;
    font-size: 0.85rem;
}

.message-meta[b-bihsnj08ob] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.message-date[b-bihsnj08ob] {
    color: #9CA3AF;
    font-size: 0.85rem;
}

.badge[b-bihsnj08ob] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-teal[b-bihsnj08ob] {
    background: #d1f5f6;
    color: #0d9488;
}

.message-subject[b-bihsnj08ob] {
    font-weight: 600;
    color: #1D3557;
    margin-bottom: 0.5rem;
}

.message-content[b-bihsnj08ob] {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1rem;
    white-space: pre-wrap;
}

.message-actions[b-bihsnj08ob] {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .admin-header[b-bihsnj08ob] {
        flex-direction: column;
        gap: 1rem;
    }

    .message-header[b-bihsnj08ob] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .message-actions[b-bihsnj08ob] {
        flex-wrap: wrap;
    }
}
/* /Components/Pages/Admin/PackageEdit.razor.rz.scp.css */
.admin-hero[b-c1m0qjueeb] {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #1a3a5c 0%, #224a73 100%);
    text-align: center;
}

    .admin-hero h1[b-c1m0qjueeb] {
        font-size: 2rem;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

.admin-section[b-c1m0qjueeb] {
    background: #f9fafb;
    min-height: 60vh;
    padding: 40px 0 80px;
}

.admin-header[b-c1m0qjueeb] {
    margin-bottom: 2rem;
}

.btn-small[b-c1m0qjueeb] {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.form-card[b-c1m0qjueeb] {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    max-width: 600px;
}

.form-group[b-c1m0qjueeb] {
    margin-bottom: 1.5rem;
}

    .form-group label[b-c1m0qjueeb] {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: #1D3557;
    }

    .form-group input[b-c1m0qjueeb],
    .form-group textarea[b-c1m0qjueeb] {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.2s ease;
    }

        .form-group input:focus[b-c1m0qjueeb],
        .form-group textarea:focus[b-c1m0qjueeb] {
            outline: none;
            border-color: #2BBCC0;
            box-shadow: 0 0 0 3px rgba(43, 188, 192, 0.1);
        }

.form-row[b-c1m0qjueeb] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group label[b-c1m0qjueeb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"][b-c1m0qjueeb] {
    width: auto;
}

.form-actions[b-c1m0qjueeb] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.error-message[b-c1m0qjueeb] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.success-message[b-c1m0qjueeb] {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row[b-c1m0qjueeb] {
        grid-template-columns: 1fr;
    }

    .form-actions[b-c1m0qjueeb] {
        flex-direction: column;
    }
}

.current-image[b-c1m0qjueeb] {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .current-image img[b-c1m0qjueeb] {
        max-width: 150px;
        max-height: 100px;
        object-fit: cover;
        border-radius: 6px;
        border: 1px solid #e5e7eb;
    }

.file-upload[b-c1m0qjueeb] {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.2s ease;
}

    .file-upload:hover[b-c1m0qjueeb] {
        border-color: #2BBCC0;
    }

    .file-upload[b-c1m0qjueeb]  input[type="file"] {
        width: 100%;
    }

.file-hint[b-c1m0qjueeb] {
    font-size: 0.85rem;
    color: #9CA3AF;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.upload-status[b-c1m0qjueeb] {
    color: #2BBCC0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.btn-danger[b-c1m0qjueeb] {
    background: #ef4444;
    color: #ffffff;
    border: none;
}

    .btn-danger:hover[b-c1m0qjueeb] {
        background: #dc2626;
    }
/* /Components/Pages/Admin/Packages.razor.rz.scp.css */
.admin-hero[b-kp0x67jkah] {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #1a3a5c 0%, #224a73 100%);
    text-align: center;
}

    .admin-hero h1[b-kp0x67jkah] {
        font-size: 2rem;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .admin-hero .hero-text[b-kp0x67jkah] {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
    }

.admin-section[b-kp0x67jkah] {
    background: #f9fafb;
    min-height: 60vh;
    padding: 40px 0 80px;
}

.admin-header[b-kp0x67jkah] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-small[b-kp0x67jkah] {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.empty-state[b-kp0x67jkah] {
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

    .empty-state p[b-kp0x67jkah] {
        color: #6B7280;
        margin-bottom: 1rem;
    }

.packages-table[b-kp0x67jkah] {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

    .packages-table table[b-kp0x67jkah] {
        width: 100%;
        border-collapse: collapse;
    }

    .packages-table th[b-kp0x67jkah],
    .packages-table td[b-kp0x67jkah] {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #e5e7eb;
    }

    .packages-table th[b-kp0x67jkah] {
        background: #f9fafb;
        font-weight: 600;
        color: #1D3557;
        font-size: 0.85rem;
        text-transform: uppercase;
    }

    .packages-table td[b-kp0x67jkah] {
        color: #4B5563;
    }

        .packages-table td strong[b-kp0x67jkah] {
            color: #1D3557;
        }

        .packages-table td small[b-kp0x67jkah] {
            color: #9CA3AF;
        }

    .packages-table tr:last-child td[b-kp0x67jkah] {
        border-bottom: none;
    }

    .packages-table tr:hover[b-kp0x67jkah] {
        background: #f9fafb;
    }

.actions-cell[b-kp0x67jkah] {
    display: flex;
    gap: 0.5rem;
}

.badge[b-kp0x67jkah] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-green[b-kp0x67jkah] {
    background: #d1fae5;
    color: #065f46;
}

.badge-gray[b-kp0x67jkah] {
    background: #e5e7eb;
    color: #6B7280;
}

.btn-danger[b-kp0x67jkah] {
    background: #ef4444;
    color: #ffffff;
    border: none;
}

    .btn-danger:hover[b-kp0x67jkah] {
        background: #dc2626;
    }

@media (max-width: 768px) {
    .admin-header[b-kp0x67jkah] {
        flex-direction: column;
        gap: 1rem;
    }

    .packages-table[b-kp0x67jkah] {
        overflow-x: auto;
    }

    .actions-cell[b-kp0x67jkah] {
        flex-direction: column;
    }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
/* Contact Hero */
.contact-hero[b-b5wapmvbom] {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fbfd 0%, #e8f4f5 100%);
    text-align: center;
}

    .contact-hero h1[b-b5wapmvbom] {
        font-size: 2.8rem;
        color: #1D3557;
        margin-bottom: 1rem;
    }

    .contact-hero .hero-text[b-b5wapmvbom] {
        font-size: 1.2rem;
        color: #6B7280;
        max-width: 500px;
        margin: 0 auto;
    }

/* Contact Content */
.contact-content[b-b5wapmvbom] {
    background: #ffffff;
}

.contact-grid[b-b5wapmvbom] {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form-wrapper h2[b-b5wapmvbom] {
    color: #1D3557;
    margin-bottom: 0.5rem;
}

.divider-left[b-b5wapmvbom] {
    width: 60px;
    height: 3px;
    background: #2BBCC0;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.contact-form[b-b5wapmvbom] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group[b-b5wapmvbom] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .form-group label[b-b5wapmvbom] {
        font-weight: 500;
        color: #1D3557;
        font-size: 0.95rem;
    }

    .form-group input[b-b5wapmvbom],
    .form-group select[b-b5wapmvbom],
    .form-group textarea[b-b5wapmvbom] {
        padding: 0.9rem 1.2rem;
        border: 1.5px solid #e5e7eb;
        border-radius: 8px;
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.2s ease;
        background: #ffffff;
    }

        .form-group input:focus[b-b5wapmvbom],
        .form-group select:focus[b-b5wapmvbom],
        .form-group textarea:focus[b-b5wapmvbom] {
            outline: none;
            border-color: #2BBCC0;
            box-shadow: 0 0 0 3px rgba(43, 188, 192, 0.1);
        }

    .form-group textarea[b-b5wapmvbom] {
        resize: vertical;
        min-height: 120px;
    }

/* Contact Info */
.contact-info-wrapper[b-b5wapmvbom] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card[b-b5wapmvbom] {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

    .info-card h3[b-b5wapmvbom] {
        color: #1D3557;
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
    }

.info-item[b-b5wapmvbom] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

    .info-item:last-child[b-b5wapmvbom] {
        margin-bottom: 0;
    }

.info-icon[b-b5wapmvbom] {
    font-size: 1.5rem;
}

.info-item strong[b-b5wapmvbom] {
    display: block;
    color: #1D3557;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.info-item p[b-b5wapmvbom] {
    color: #6B7280;
    margin: 0;
    font-size: 0.95rem;
}

.info-item a[b-b5wapmvbom] {
    color: #2BBCC0;
}

    .info-item a:hover[b-b5wapmvbom] {
        color: #1D3557;
    }

.map-wrapper[b-b5wapmvbom] {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero[b-b5wapmvbom] {
        padding: 120px 0 60px;
    }

        .contact-hero h1[b-b5wapmvbom] {
            font-size: 2rem;
        }

    .contact-grid[b-b5wapmvbom] {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-wrapper[b-b5wapmvbom] {
        order: -1;
    }
}

/* Success and Error Messages */
.success-message[b-b5wapmvbom] {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .success-message span[b-b5wapmvbom] {
        font-size: 1.25rem;
    }

.error-message[b-b5wapmvbom] {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .error-message span[b-b5wapmvbom] {
        font-size: 1.25rem;
    }

button:disabled[b-b5wapmvbom] {
    opacity: 0.6;
    cursor: not-allowed;
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
/* Dashboard Hero */
.dashboard-hero[b-vnlbgf3t7o] {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #1a3a5c 0%, #224a73 100%);
    text-align: center;
}

    .dashboard-hero h1[b-vnlbgf3t7o] {
        font-size: 2rem;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .dashboard-hero .hero-text[b-vnlbgf3t7o] {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
    }

/* Dashboard Section */
.dashboard-section[b-vnlbgf3t7o] {
    background: #f9fafb;
    min-height: 60vh;
    padding: 40px 0 80px;
}

.dashboard-grid[b-vnlbgf3t7o] {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

/* Sidebar */
.dashboard-sidebar[b-vnlbgf3t7o] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    height: fit-content;
}

.sidebar-nav[b-vnlbgf3t7o] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item[b-vnlbgf3t7o] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    color: #4B5563;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: left;
}

    .nav-item:hover[b-vnlbgf3t7o] {
        background: #f3f4f6;
        color: #1D3557;
    }

    .nav-item.active[b-vnlbgf3t7o] {
        background: #e8f4f5;
        color: #2BBCC0;
    }

    .nav-item span[b-vnlbgf3t7o] {
        font-size: 1.2rem;
    }

.logout-btn[b-vnlbgf3t7o] {
    margin-top: 1rem;
    color: #ef4444;
}

    .logout-btn:hover[b-vnlbgf3t7o] {
        background: #fef2f2;
        color: #dc2626;
    }

/* Main Content */
.dashboard-main[b-vnlbgf3t7o] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

    .dashboard-main h2[b-vnlbgf3t7o] {
        color: #1D3557;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }

.divider-left[b-vnlbgf3t7o] {
    width: 60px;
    height: 3px;
    background: #2BBCC0;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.section-subtitle[b-vnlbgf3t7o] {
    color: #1D3557;
    font-size: 1.1rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Stats Grid */
.stats-grid[b-vnlbgf3t7o] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stats-grid-small[b-vnlbgf3t7o] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
}

.stats-grid-three[b-vnlbgf3t7o] {
    grid-template-columns: repeat(3, 1fr);
}

.stat-card[b-vnlbgf3t7o] {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Meter Styles */
.meter-container[b-vnlbgf3t7o] {
    width: 100px;
    height: 55px;
    margin-bottom: 0.5rem;
}

.meter[b-vnlbgf3t7o] {
    width: 100%;
    height: 100%;
}

.meter-bg[b-vnlbgf3t7o] {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 8;
    stroke-linecap: round;
}

.meter-fill[b-vnlbgf3t7o] {
    fill: none;
    stroke: #2BBCC0;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

    .meter-fill.meter-blue[b-vnlbgf3t7o] {
        stroke: #3b82f6;
    }

    .meter-fill.meter-purple[b-vnlbgf3t7o] {
        stroke: #8b5cf6;
    }

    .meter-fill.meter-green[b-vnlbgf3t7o] {
        stroke: #10b981;
    }

    .meter-fill.meter-orange[b-vnlbgf3t7o] {
        stroke: #f59e0b;
    }

    .meter-fill.meter-navy[b-vnlbgf3t7o] {
        stroke: #1D3557;
    }

.stat-number[b-vnlbgf3t7o] {
    font-size: 2rem;
    font-weight: 700;
    color: #1D3557;
    line-height: 1;
}

.stat-label[b-vnlbgf3t7o] {
    font-size: 0.85rem;
    color: #6B7280;
    margin-top: 0.25rem;
}

/* Quick Actions */
.quick-actions[b-vnlbgf3t7o] {
    margin-top: 2.5rem;
}

    .quick-actions h3[b-vnlbgf3t7o] {
        color: #1D3557;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

.actions-grid[b-vnlbgf3t7o] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.action-card[b-vnlbgf3t7o] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .action-card:hover[b-vnlbgf3t7o] {
        border-color: #2BBCC0;
        box-shadow: 0 4px 12px rgba(43, 188, 192, 0.1);
    }

    .action-card span[b-vnlbgf3t7o] {
        font-size: 2rem;
        display: block;
        margin-bottom: 0.5rem;
    }

    .action-card p[b-vnlbgf3t7o] {
        color: #4B5563;
        margin: 0;
        font-weight: 500;
    }

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid[b-vnlbgf3t7o] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-grid[b-vnlbgf3t7o] {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar[b-vnlbgf3t7o] {
        order: 2;
    }

    .dashboard-main[b-vnlbgf3t7o] {
        order: 1;
    }

    .stats-grid[b-vnlbgf3t7o] {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid-small[b-vnlbgf3t7o] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Hero Section */
.hero[b-r4pljjy03s] {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff url('/images/network-bg.svg') center center no-repeat;
    background-size: cover;
    position: relative;
}

.hero-content[b-r4pljjy03s] {
    text-align: center;
    padding: 2rem;
    max-width: 750px;
}

.hero-title[b-r4pljjy03s] {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1D3557;
}

.hero-subtitle[b-r4pljjy03s] {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons[b-r4pljjy03s] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features[b-r4pljjy03s] {
    background: #ffffff;
    padding: 100px 0;
}

.features-grid[b-r4pljjy03s] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card[b-r4pljjy03s] {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
}

    .feature-card:hover[b-r4pljjy03s] {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border-color: #d1d5db;
    }

.feature-icon[b-r4pljjy03s] {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.feature-card h3[b-r4pljjy03s] {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #1D3557;
}

.feature-card p[b-r4pljjy03s] {
    color: #6B7280;
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Section */
.cta-section[b-r4pljjy03s] {
    padding: 80px 0;
    background: #f9fafb;
}

.cta-box[b-r4pljjy03s] {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

    .cta-box h2[b-r4pljjy03s] {
        margin-bottom: 0.75rem;
        color: #1D3557;
    }

    .cta-box p[b-r4pljjy03s] {
        margin-bottom: 2rem;
        font-size: 1.1rem;
        color: #6B7280;
    }

/* Responsive */
@media (max-width: 768px) {
    .hero[b-r4pljjy03s] {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-title[b-r4pljjy03s] {
        font-size: 2.2rem;
    }

    .hero-subtitle[b-r4pljjy03s] {
        font-size: 1.05rem;
    }

    .hero-buttons[b-r4pljjy03s] {
        flex-direction: column;
        align-items: center;
    }

    .features[b-r4pljjy03s] {
        padding: 60px 0;
    }

    .cta-box[b-r4pljjy03s] {
        padding: 3rem 1.5rem;
    }
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* Login Hero */
.login-hero[b-or2jd6rwiu] {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #f8fbfd 0%, #e8f4f5 100%);
    text-align: center;
}

    .login-hero h1[b-or2jd6rwiu] {
        font-size: 2.5rem;
        color: #1D3557;
        margin-bottom: 0.5rem;
    }

    .login-hero .hero-text[b-or2jd6rwiu] {
        font-size: 1.1rem;
        color: #6B7280;
    }

/* Login Section */
.login-section[b-or2jd6rwiu] {
    background: #ffffff;
    padding: 60px 0 100px;
}

.login-box[b-or2jd6rwiu] {
    max-width: 420px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.form-group[b-or2jd6rwiu] {
    margin-bottom: 1.5rem;
}

    .form-group label[b-or2jd6rwiu] {
        display: block;
        font-weight: 500;
        color: #1D3557;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .form-group input[b-or2jd6rwiu] {
        width: 100%;
        padding: 0.9rem 1rem;
        border: 1.5px solid #e5e7eb;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.2s ease;
    }

        .form-group input:focus[b-or2jd6rwiu] {
            outline: none;
            border-color: #2BBCC0;
            box-shadow: 0 0 0 3px rgba(43, 188, 192, 0.1);
        }

.btn-full[b-or2jd6rwiu] {
    width: 100%;
    margin-top: 0.5rem;
}

.error-message[b-or2jd6rwiu] {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

button:disabled[b-or2jd6rwiu] {
    opacity: 0.6;
    cursor: not-allowed;
}
/* /Components/Pages/Packages.razor.rz.scp.css */
.packages-hero[b-1tfqsdsrt8] {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a3a5c 0%, #224a73 100%);
    text-align: center;
}

    .packages-hero h1[b-1tfqsdsrt8] {
        font-size: 2.5rem;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .packages-hero .hero-text[b-1tfqsdsrt8] {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
    }

.packages-section[b-1tfqsdsrt8] {
    background: #f9fafb;
    padding: 60px 0 80px;
}

.loading-text[b-1tfqsdsrt8] {
    text-align: center;
    color: #6B7280;
}

.empty-state[b-1tfqsdsrt8] {
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

    .empty-state p[b-1tfqsdsrt8] {
        color: #6B7280;
        margin-bottom: 1rem;
    }

.packages-grid[b-1tfqsdsrt8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card[b-1tfqsdsrt8] {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .package-card:hover[b-1tfqsdsrt8] {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

.package-image[b-1tfqsdsrt8] {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
}

    .package-image img[b-1tfqsdsrt8] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.package-content[b-1tfqsdsrt8] {
    padding: 1.5rem;
}

    .package-content h3[b-1tfqsdsrt8] {
        color: #1D3557;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .package-content p[b-1tfqsdsrt8] {
        color: #6B7280;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

.package-price[b-1tfqsdsrt8] {
    margin-bottom: 1rem;
}

    .package-price span[b-1tfqsdsrt8] {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2BBCC0;
    }

@media (max-width: 768px) {
    .packages-hero h1[b-1tfqsdsrt8] {
        font-size: 2rem;
    }

    .packages-grid[b-1tfqsdsrt8] {
        grid-template-columns: 1fr;
    }
}
