/* /Components/Common/EmptyState.razor.rz.scp.css */
.empty-state[b-4q7gg4ppg9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.empty-icon[b-4q7gg4ppg9] {
    font-size: 4rem;
    color: var(--sand-dark);
    margin-bottom: 1.5rem;
}

.empty-state h3[b-4q7gg4ppg9] {
    margin: 0 0 0.5rem 0;
    color: var(--water-deep);
}

.empty-state p[b-4q7gg4ppg9] {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.empty-action[b-4q7gg4ppg9] {
    margin-top: 1rem;
}
/* /Components/Common/Modal.razor.rz.scp.css */
/* Modal styling */

.modal-backdrop[b-z56lj9o4i5] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.5;
}

.modal-content[b-z56lj9o4i5] {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: none;
    /* Ensure modal content remains at full brightness */
    opacity: 1 !important;
    background-color: #fff;
}

/* Animation for modal transitions */
.modal.fade .modal-dialog[b-z56lj9o4i5] {
    transition: transform 0.3s ease-out;
    transform: translate(0, -25%);
}

.modal.show .modal-dialog[b-z56lj9o4i5] {
    transform: translate(0, 0);
}

/* Ensure modal header has proper contrast against backdrop */
.modal-header[b-z56lj9o4i5] {
    border-bottom: 1px solid #e5e5e5;
    background-color: #f8f9fa;
}

/* Ensure modal content has proper z-index to appear above dimmed backdrop */
.modal[b-z56lj9o4i5] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog[b-z56lj9o4i5] {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal-content[b-z56lj9o4i5] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

@media (min-width: 576px) {
    .modal-dialog[b-z56lj9o4i5] {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}
/* /Components/Dashboard/DashboardNavMenu.razor.rz.scp.css */
.dashboard-nav[b-h6zak6wsw9] {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-right: 1px solid var(--gray-200);
    height: 100%;
    width: 100%;
    max-width: 250px;
    padding: 1.5rem 0;
}

.dashboard-nav-header[b-h6zak6wsw9] {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-nav-header h2[b-h6zak6wsw9] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.dashboard-nav-section[b-h6zak6wsw9] {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-nav-title[b-h6zak6wsw9] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-500);
    padding: 0 1.5rem 0.75rem 1.5rem;
    letter-spacing: 0.05em;
}

.dashboard-nav-item[b-h6zak6wsw9] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.dashboard-nav-item:hover[b-h6zak6wsw9] {
    background-color: var(--gray-100);
    color: var(--gray-900);
}

.dashboard-nav-item.active[b-h6zak6wsw9] {
    color: var(--primary);
    background-color: rgba(var(--primary-rgb), 0.1);
    font-weight: 500;
}

.dashboard-nav-item.active[b-h6zak6wsw9]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary);
}

.dashboard-nav-item i[b-h6zak6wsw9] {
    width: 20px;
    margin-right: 0.75rem;
}

.dashboard-nav-footer[b-h6zak6wsw9] {
    margin-top: auto;
    padding-top: 1.5rem;
}

.home-link[b-h6zak6wsw9], .back-link[b-h6zak6wsw9] {
    color: var(--gray-600);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.home-link:hover[b-h6zak6wsw9], .back-link:hover[b-h6zak6wsw9] {
    color: var(--primary);
}

/* Mobile styles */
@media (max-width: 992px) {
    .dashboard-nav[b-h6zak6wsw9] {
        display: none; /* Hide side nav on mobile */
    }
}
/* /Components/Dashboard/DashboardSummary.razor.rz.scp.css */
.dashboard-summary[b-9zu7dzzcxw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-section[b-9zu7dzzcxw] {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.summary-title[b-9zu7dzzcxw] {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Recent Activity Section */
.activity-empty-state[b-9zu7dzzcxw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    text-align: center;
    color: var(--gray-500);
}

.activity-empty-state i[b-9zu7dzzcxw] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.btn-add-catch[b-9zu7dzzcxw] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-add-catch:hover[b-9zu7dzzcxw] {
    background-color: #e05757;
    transform: translateY(-2px);
}

/* Weather Overview Section */
.weather-preview[b-9zu7dzzcxw] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.weather-location[b-9zu7dzzcxw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.weather-conditions[b-9zu7dzzcxw] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(var(--primary-rgb), 0.05);
    border-radius: 0.5rem;
}

.weather-conditions i[b-9zu7dzzcxw] {
    font-size: 2rem;
    color: #f6b93b;
}

.weather-details[b-9zu7dzzcxw] {
    display: flex;
    flex-direction: column;
}

.weather-temp[b-9zu7dzzcxw] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
}

.weather-desc[b-9zu7dzzcxw] {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.weather-forecast-link[b-9zu7dzzcxw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background-color: var(--gray-100);
    color: var(--gray-800);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.weather-forecast-link:hover[b-9zu7dzzcxw] {
    background-color: var(--gray-200);
}

@media (max-width: 768px) {
    .dashboard-summary[b-9zu7dzzcxw] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Dashboard/FeatureCard.razor.rz.scp.css */
.feature-card[b-qnvn2298ex] {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
    border-top: 4px solid transparent;
}

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

.feature-icon[b-qnvn2298ex] {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--border-radius-md);
    background-color: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i[b-qnvn2298ex] {
    font-size: 1.5rem;
    color: var(--water-medium);
}

.feature-card h3[b-qnvn2298ex] {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.feature-card p[b-qnvn2298ex] {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-link[b-qnvn2298ex] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: rgba(var(--primary-rgb), 0.05);
    border-radius: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.feature-link:hover[b-qnvn2298ex] {
    background-color: rgba(var(--primary-rgb), 0.1);
}

.feature-footer[b-qnvn2298ex] {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-feature[b-qnvn2298ex] {
    position: relative;
    border-top: 4px solid var(--fish-orange);
}

.premium-feature[b-qnvn2298ex]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--fish-orange) 50%, transparent 50%);
    border-radius: 0 0 0 8px;
}
/* /Components/Navigation/GuestMenu.razor.rz.scp.css */
.guest-menu[b-584bpv2azc] {
    position: relative;
}

.account-dropdown[b-584bpv2azc] {
    position: relative;
}

.account-btn[b-584bpv2azc] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: transparent;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
}

.account-btn:hover[b-584bpv2azc] {
    background-color: rgba(var(--primary-rgb), 0.1);
}

.account-btn i[b-584bpv2azc] {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.account-text[b-584bpv2azc] {
    font-weight: 500;
}

.dropdown-arrow[b-584bpv2azc] {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.dropdown-arrow.rotated[b-584bpv2azc] {
    transform: rotate(180deg);
}

.dropdown-menu[b-584bpv2azc] {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    z-index: 1000;
    min-width: 280px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
}

.dropdown-menu.show[b-584bpv2azc] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content[b-584bpv2azc] {
    padding: 1rem;
}

.guest-info[b-584bpv2azc] {
    text-align: center;
    padding: 1rem 0;
}

.guest-icon[b-584bpv2azc] {
    font-size: 3rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.guest-info h4[b-584bpv2azc] {
    margin: 0.5rem 0;
    color: var(--gray-800);
}

.guest-info p[b-584bpv2azc] {
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.dropdown-divider[b-584bpv2azc] {
    height: 1px;
    background-color: var(--gray-200);
    margin: 0.5rem 0;
}

.dropdown-item[b-584bpv2azc] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.dropdown-item:hover[b-584bpv2azc] {
    background-color: var(--gray-100);
}

.dropdown-item.primary[b-584bpv2azc] {
    background-color: var(--primary);
    color: white;
}

.dropdown-item.primary:hover[b-584bpv2azc] {
    background-color: #e05050;
}

.dropdown-item.primary i[b-584bpv2azc] {
    color: white;
}

.dropdown-item i[b-584bpv2azc] {
    width: 1.25rem;
    text-align: center;
    color: var(--gray-600);
}

.dropdown-backdrop[b-584bpv2azc] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
}

@media (max-width: 768px) {
    .account-text[b-584bpv2azc] {
        display: none;
    }
}
/* /Components/Navigation/MainNav.razor.rz.scp.css */
/* Minimal custom styling - mostly using Bootstrap classes */

/* Backdrop for dropdown on mobile devices */
.dropdown-backdrop[b-c3wcq2ysyw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: transparent;
}

/* This is a comment system for customization */

/* NAVBAR COLORS
---------------------------
* To change navbar background color, modify the .bg-primary class in the component
* You can use: bg-primary, bg-secondary, bg-success, bg-danger, bg-warning, bg-info, bg-light, bg-dark
* Or create custom colors in your app.css file
*/

/* NAVBAR SHAPE/SIZE
---------------------------
* For different paddings: py-0, py-1, py-2, py-3
* For different margins: my-0, my-1, my-2, my-3
* For shadow effects: shadow, shadow-sm, shadow-lg
*/

/* BUTTON STYLING
---------------------------
* Primary buttons: btn-primary
* Secondary buttons: btn-secondary
* Outline buttons: btn-outline-primary, btn-outline-secondary
* Sizes: btn-sm, btn-lg
*/

/* DROPDOWN CUSTOMIZATION
---------------------------
* Dropdown sizes: dropdown-menu-sm, dropdown-menu-lg
* Dropdown directions: dropstart, dropend, dropup
* Dark dropdowns: dropdown-menu-dark
*/

/* RESPONSIVE BEHAVIOR
---------------------------
* Control navbar breakpoints with navbar-expand-sm, navbar-expand-md, navbar-expand-lg, navbar-expand-xl
* Hide elements on different screens: d-none d-md-block (hidden on mobile, visible on medium screens and up)
*/
/* /Components/Navigation/NavMenu.razor.rz.scp.css */
/* Main Navigation Container */
.top-row[b-zrdbqzehet] {
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nav-container[b-zrdbqzehet] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Left Section */
.nav-left[b-zrdbqzehet] {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.brand-section[b-zrdbqzehet] {
    flex-shrink: 0;
}

.navbar-brand[b-zrdbqzehet] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-brand span[b-zrdbqzehet] {
    font-weight: 700;
    color: #ff6b6b;
}

.navbar-brand:hover[b-zrdbqzehet] {
    color: #ff6b6b;
    transform: scale(1.05);
    text-decoration: none;
}

.navbar-brand i[b-zrdbqzehet] {
    margin-right: 0.5rem;
    color: white;
}

/* Desktop Navigation */
.desktop-nav[b-zrdbqzehet] {
    display: none;
}

.nav-list[b-zrdbqzehet] {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 0.5rem;
}

.nav-item[b-zrdbqzehet] {
    margin: 0;
}

.nav-link[b-zrdbqzehet] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover[b-zrdbqzehet] {
    color: #ff6b6b;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active[b-zrdbqzehet] {
    color: #ff6b6b;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
}

.nav-link.active[b-zrdbqzehet]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #ff6b6b;
    border-radius: 2px;
}

.nav-text[b-zrdbqzehet] {
    font-size: 0.9rem;
    letter-spacing: 0.025em;
}

/* Right Section */
.nav-right[b-zrdbqzehet] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Account Dropdown */
.account-dropdown[b-zrdbqzehet] {
    position: relative;
}

.account-btn[b-zrdbqzehet] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.account-btn:hover[b-zrdbqzehet] {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.account-btn.logged-in[b-zrdbqzehet] {
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
}

.account-btn.logged-in:hover[b-zrdbqzehet] {
    background: rgba(255, 107, 107, 0.25);
}

.account-text[b-zrdbqzehet] {
    display: none;
}

.user-avatar[b-zrdbqzehet] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ff6b6b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
}

.user-avatar.large[b-zrdbqzehet] {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.dropdown-arrow[b-zrdbqzehet] {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown-arrow.rotated[b-zrdbqzehet] {
    transform: rotate(180deg);
}

.dropdown-menu[b-zrdbqzehet] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.show[b-zrdbqzehet] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content[b-zrdbqzehet] {
    padding: 0.5rem 0;
}

/* User Info Section */
.user-info[b-zrdbqzehet] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.user-details[b-zrdbqzehet] {
    flex: 1;
}

.user-name[b-zrdbqzehet] {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.user-email[b-zrdbqzehet] {
    color: #666;
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

.user-subscription[b-zrdbqzehet] {
    background: #667eea;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-block;
}

/* Guest Info Section */
.guest-info[b-zrdbqzehet] {
    text-align: center;
    padding: 1.5rem 1rem;
}

.guest-icon[b-zrdbqzehet] {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.guest-info h4[b-zrdbqzehet] {
    color: #333;
    margin: 0.5rem 0 0.25rem 0;
    font-size: 1.1rem;
}

.guest-info p[b-zrdbqzehet] {
    color: #666;
    margin: 0;
    font-size: 0.85rem;
}

.dropdown-item[b-zrdbqzehet] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
}

.dropdown-item:hover[b-zrdbqzehet] {
    background: #f8f9fa;
    color: #667eea;
    text-decoration: none;
}

.dropdown-item.primary[b-zrdbqzehet] {
    color: #667eea;
    font-weight: 600;
}

.dropdown-item.primary:hover[b-zrdbqzehet] {
    background: #667eea;
    color: white;
}

.dropdown-item i[b-zrdbqzehet] {
    width: 16px;
    font-size: 0.875rem;
}

.dropdown-divider[b-zrdbqzehet] {
    height: 1px;
    background: #e9ecef;
    margin: 0.5rem 0;
}

.logout-btn[b-zrdbqzehet] {
    color: #dc3545;
}

.logout-btn:hover[b-zrdbqzehet] {
    background: #f8f9fa;
    color: #dc3545;
}

.dropdown-backdrop[b-zrdbqzehet] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle[b-zrdbqzehet] {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover[b-zrdbqzehet] {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger[b-zrdbqzehet] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
}

.hamburger-line[b-zrdbqzehet] {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line[b-zrdbqzehet] {
    background: #ff6b6b;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay[b-zrdbqzehet] {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav-overlay.show[b-zrdbqzehet] {
    display: block;
    transform: translateX(0);
}

.mobile-nav-content[b-zrdbqzehet] {
    padding: 1.5rem;
}

/* Mobile Account Section */
.mobile-account-section[b-zrdbqzehet] {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.mobile-account-section.logged-in[b-zrdbqzehet] {
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
}

.mobile-account-header[b-zrdbqzehet] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-account-header i[b-zrdbqzehet] {
    font-size: 1.5rem;
    color: #ff6b6b;
}

.mobile-account-buttons[b-zrdbqzehet] {
    display: flex;
    gap: 0.75rem;
}

.mobile-user-info[b-zrdbqzehet] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-user-info .user-details[b-zrdbqzehet] {
    flex: 1;
}

.mobile-user-info .user-name[b-zrdbqzehet] {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-user-info .user-email[b-zrdbqzehet] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.mobile-user-info .user-subscription[b-zrdbqzehet] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
}

.btn-login-mobile[b-zrdbqzehet], .btn-signup-mobile[b-zrdbqzehet] {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-login-mobile[b-zrdbqzehet] {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.btn-signup-mobile[b-zrdbqzehet] {
    background: #ff6b6b;
    border: 1px solid #ff6b6b;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-login-mobile:hover[b-zrdbqzehet], .btn-signup-mobile:hover[b-zrdbqzehet] {
    text-decoration: none;
    color: white;
    transform: translateY(-2px);
}

.btn-login-mobile:hover[b-zrdbqzehet] {
    background: rgba(255, 255, 255, 0.2);
}

.btn-signup-mobile:hover[b-zrdbqzehet] {
    background: #ff5252;
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

.mobile-nav-list[b-zrdbqzehet] {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.mobile-nav-item[b-zrdbqzehet] {
    margin-bottom: 0.5rem;
}

.mobile-nav-link[b-zrdbqzehet] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.mobile-nav-link:hover[b-zrdbqzehet] {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav-link.active[b-zrdbqzehet] {
    background: rgba(255, 107, 107, 0.25);
    color: white;
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.2);
}

.mobile-nav-link.active:hover[b-zrdbqzehet] {
    background: rgba(255, 107, 107, 0.35);
    transform: translateX(10px);
}

.mobile-nav-link i[b-zrdbqzehet] {
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
    color: #ff6b6b;
}

.mobile-nav-link.active i[b-zrdbqzehet] {
    color: white;
}

.mobile-account-links[b-zrdbqzehet] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.mobile-account-links h3[b-zrdbqzehet] {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .nav-container[b-zrdbqzehet] {
        padding: 0 2rem;
    }

    .desktop-nav[b-zrdbqzehet] {
        display: block;
    }

    .account-text[b-zrdbqzehet] {
        display: block;
    }

    .user-avatar[b-zrdbqzehet] {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .mobile-menu-toggle[b-zrdbqzehet] {
        display: none;
    }

    .mobile-nav-overlay[b-zrdbqzehet] {
        display: none !important;
    }

    .top-row[b-zrdbqzehet] {
        height: 80px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .nav-container[b-zrdbqzehet] {
        padding: 0 3rem;
    }

    .nav-left[b-zrdbqzehet] {
        gap: 5rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .top-row[b-zrdbqzehet] {
        height: 60px;
    }

    .nav-container[b-zrdbqzehet] {
        padding: 0 1rem;
    }

    .navbar-brand[b-zrdbqzehet] {
        font-size: 1.25rem;
    }

    .mobile-nav-overlay[b-zrdbqzehet] {
        top: 60px;
    }

    .account-btn[b-zrdbqzehet] {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .user-avatar[b-zrdbqzehet] {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .dropdown-menu[b-zrdbqzehet] {
        min-width: 260px;
        right: -1rem;
    }
}
/* /Components/Navigation/UserProfileMenu.razor.rz.scp.css */
.user-profile-menu[b-5l2adyam6m] {
    position: relative;
}

.account-dropdown[b-5l2adyam6m] {
    position: relative;
}

.account-btn[b-5l2adyam6m] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: transparent;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
}

.account-btn.logged-in[b-5l2adyam6m] {
    background-color: rgba(var(--primary-rgb), 0.1);
}

.account-btn:hover[b-5l2adyam6m] {
    background-color: rgba(var(--primary-rgb), 0.15);
}

.user-avatar[b-5l2adyam6m] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.user-avatar.large[b-5l2adyam6m] {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
}

.account-text[b-5l2adyam6m] {
    font-weight: 500;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-arrow[b-5l2adyam6m] {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.dropdown-arrow.rotated[b-5l2adyam6m] {
    transform: rotate(180deg);
}

.dropdown-menu[b-5l2adyam6m] {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    z-index: 1000;
    min-width: 280px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
}

.dropdown-menu.show[b-5l2adyam6m] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content[b-5l2adyam6m] {
    padding: 1rem;
}

.user-info[b-5l2adyam6m] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.user-details[b-5l2adyam6m] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-name[b-5l2adyam6m] {
    font-weight: 600;
    color: var(--gray-800);
}

.user-email[b-5l2adyam6m] {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.user-subscription[b-5l2adyam6m] {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background-color: var(--primary);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.25rem;
}

.dropdown-divider[b-5l2adyam6m] {
    height: 1px;
    background-color: var(--gray-200);
    margin: 0.5rem 0;
}

.dropdown-item[b-5l2adyam6m] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.dropdown-item:hover[b-5l2adyam6m] {
    background-color: var(--gray-100);
}

.dropdown-item i[b-5l2adyam6m] {
    width: 1.25rem;
    text-align: center;
    color: var(--gray-600);
}

.logout-btn[b-5l2adyam6m] {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
}

.logout-btn:hover[b-5l2adyam6m] {
    color: var(--danger);
}

.logout-btn:hover i[b-5l2adyam6m] {
    color: var(--danger);
}

.dropdown-backdrop[b-5l2adyam6m] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
}

@media (max-width: 768px) {
    .account-text[b-5l2adyam6m] {
        display: none;
    }
}
/* /Components/UI/Buttons/HeroButton.razor.rz.scp.css */
.hero-button[b-u1lfgsrnkk] {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-full);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    font-size: var(--font-size-lg);
    position: relative;
    z-index: 2; /* Higher than ripples */
    transform: translateY(0);
    overflow: hidden;

    /* Clean, professional look with subtle depth */
    box-shadow: 0 4px 6px rgba(255, 107, 107, 0.15);
    background: linear-gradient(145deg, var(--primary) 0%, #e55a5a 100%);
}

.hero-button:hover[b-u1lfgsrnkk] {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(255, 107, 107, 0.2);
    background: linear-gradient(145deg, #ff7b7b 0%, var(--primary) 100%);
    border-color: #ff7b7b;
}

/* Button press effect */
.hero-button:active[b-u1lfgsrnkk] {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.2);
    transition: all 0.1s ease;
}

.hero-button:focus[b-u1lfgsrnkk] {
    outline: none;
    box-shadow: 
        0 4px 6px rgba(255, 107, 107, 0.15),
        0 0 0 2px rgba(255, 107, 107, 0.15);
}

.hero-button:disabled[b-u1lfgsrnkk] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.08);
    background: linear-gradient(145deg, #e56666 0%, #cc5252 100%);
}

/* Size Variants */
.hero-button.btn-sm[b-u1lfgsrnkk] {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
}

.hero-button.btn-sm:hover[b-u1lfgsrnkk] {
    transform: translateY(-1px);
}

.hero-button.btn-lg[b-u1lfgsrnkk] {
    padding: var(--spacing-lg) var(--spacing-xxl);
    font-size: var(--font-size-xl);
}

.hero-button.btn-lg:hover[b-u1lfgsrnkk] {
    transform: translateY(-3px);
}

/* Loading Spinner */
.btn-spinner[b-u1lfgsrnkk] {
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin-b-u1lfgsrnkk 1s linear infinite;
}

@keyframes spin-b-u1lfgsrnkk {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* /Components/UI/Buttons/PricingButton.razor.rz.scp.css */
/* /Components/UI/Cards/FeatureCard.razor.rz.scp.css */
.feature-card[b-rap2rc87n6] {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--gray-100);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card[b-rap2rc87n6]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover[b-rap2rc87n6] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-card:hover[b-rap2rc87n6]::before {
    transform: scaleX(1);
}

.feature-icon[b-rap2rc87n6] {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    display: block;
}

.feature-title[b-rap2rc87n6] {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--spacing-md);
}

.feature-description[b-rap2rc87n6] {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* Responsive */
@media (max-width: 768px) {
    .feature-card[b-rap2rc87n6] {
        margin-bottom: var(--spacing-lg);
    }
}
/* /Components/UI/Cards/InfoCard.razor.rz.scp.css */
/* /Components/UI/Cards/PricingCard.razor.rz.scp.css */
/* /Components/UI/Common/Alert.razor.rz.scp.css */
/* /Components/UI/Common/Badge.razor.rz.scp.css */
/* /Components/UI/Common/LoadingSpinner.razor.rz.scp.css */
/* /Components/UI/DashboardSkeleton.razor.rz.scp.css */
/* Skeleton loading animation */
@keyframes skeleton-loading-b-tpeh2a6gre {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.dashboard-skeleton[b-tpeh2a6gre] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Generic skeleton elements */
.skeleton-title[b-tpeh2a6gre],
.skeleton-subtitle[b-tpeh2a6gre],
.skeleton-section-title[b-tpeh2a6gre],
.skeleton-section-subtitle[b-tpeh2a6gre],
.skeleton-card[b-tpeh2a6gre],
.skeleton-feature-card[b-tpeh2a6gre] {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200px 100%;
    animation: skeleton-loading-b-tpeh2a6gre 1.5s infinite linear;
    border-radius: 8px;
}

/* Header section */
.skeleton-header[b-tpeh2a6gre] {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.skeleton-title[b-tpeh2a6gre] {
    height: 2.5rem;
    width: 60%;
    max-width: 300px;
    margin-bottom: 0.75rem;
}

.skeleton-subtitle[b-tpeh2a6gre] {
    height: 1rem;
    width: 40%;
    max-width: 200px;
}

/* Summary section */
.skeleton-summary[b-tpeh2a6gre] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.skeleton-card[b-tpeh2a6gre] {
    height: 150px;
    border-radius: 12px;
}

/* Section header */
.skeleton-section-header[b-tpeh2a6gre] {
    margin-bottom: 1.5rem;
}

.skeleton-section-title[b-tpeh2a6gre] {
    height: 1.5rem;
    width: 30%;
    margin-bottom: 0.5rem;
}

.skeleton-section-subtitle[b-tpeh2a6gre] {
    height: 1rem;
    width: 50%;
}

/* Feature cards */
.skeleton-features[b-tpeh2a6gre] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.skeleton-feature-card[b-tpeh2a6gre] {
    height: 200px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .skeleton-summary[b-tpeh2a6gre] {
        grid-template-columns: 1fr;
    }

    .skeleton-features[b-tpeh2a6gre] {
        grid-template-columns: 1fr;
    }
}
/* /Components/UI/Layout/Container.razor.rz.scp.css */
/* /Components/UI/Layout/HeroSection.razor.rz.scp.css */
.hero-section[b-9a7osopxfo] {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-xxl) var(--spacing-lg);
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Ripple container */
.ripple-container[b-9a7osopxfo] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1; /* Below content */
}

/* Ripple circles */
.ripple[b-9a7osopxfo]::before,
.ripple[b-9a7osopxfo]::after,
.ripple[b-9a7osopxfo] {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    width: 0;
    height: 0;
    border: rgba(255, 255, 255, 0.5) 0.25em solid;
    transform: translate(-50%, -50%) scale(0.7, 1); /* Make it oval */
    opacity: 0;
    pointer-events: none;
    background: transparent;
    z-index: 0;
}

/* Only animate ripples when button is clicked */
.rippling .ripple[b-9a7osopxfo] {
    animation: rippleEffect-b-9a7osopxfo 6s ease-out;
}

.rippling .ripple[b-9a7osopxfo]::before {
    animation: rippleEffect-b-9a7osopxfo 6s ease-out 0.2s;
}

.rippling .ripple[b-9a7osopxfo]::after {
    animation: rippleEffect-b-9a7osopxfo 6s ease-out 0.8s;
}

@keyframes rippleEffect-b-9a7osopxfo {
    0% {
        width: 1em;
        height: 0.5em;
        border: rgba(255, 255, 255, 0.7) 0.25em solid;
        opacity: 1;
    }
    30% {
        opacity: 0.7;
    }
    70% {
        opacity: 0.3;
    }
    100% {
        width: 70vw;
        height: 35vw; /* Half width for oval shape */
        border: rgba(255, 255, 255, 0.1) 0.5em solid;
        opacity: 0;
    }
}

/* 🌊 Ocean shine overlay */
.hero-section[b-9a7osopxfo]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* 🐟 SWIMMING FISH ANIMATIONS */
.hero-section[b-9a7osopxfo]::after {
    content: '\f578'; /* Font Awesome fish icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    z-index: 0;
    animation: heroFishSwim-b-9a7osopxfo 15s linear infinite;
    pointer-events: none;
    top: 70%;
    left: -10%;
    /* Initial right-facing direction */
    transform: scaleX(1); 
}

@keyframes heroFishSwim-b-9a7osopxfo {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0) scaleX(1) rotate(5deg);
    }
    10% {
        opacity: 0.6;
        transform: translateX(15vw) translateY(-5vh) scaleX(1) rotate(10deg);
    }
    25% {
        opacity: 0.8;
        transform: translateX(25vw) translateY(-10vh) scaleX(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: translateX(50vw) translateY(5vh) scaleX(1) rotate(-10deg);
    }
    75% {
        opacity: 0.8;
        transform: translateX(75vw) translateY(-5vh) scaleX(1) rotate(0deg);
    }
    90% {
        opacity: 0.6;
        transform: translateX(90vw) translateY(-2vh) scaleX(1) rotate(10deg);
    }
    100% {
        opacity: 0;
        transform: translateX(110vw) translateY(0) scaleX(1) rotate(5deg);
    }
}

/* 🐟 MULTIPLE FISH USING PSEUDO ELEMENTS */
.hero-section .hero-content[b-9a7osopxfo]::before,
.hero-section .hero-content[b-9a7osopxfo]::after {
    content: '\f578'; /* Font Awesome fish */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 0;
}

.hero-section .hero-content[b-9a7osopxfo]::before {
    top: -15vh;
    right: -5vw;
    animation: fishSwimTopRight-b-9a7osopxfo 20s linear infinite;
    /* Initially facing right, will be flipped in animation */
    transform: scaleX(1);
}

@keyframes fishSwimTopRight-b-9a7osopxfo {
    0% {
        opacity: 0;
        /* Swimming left, so flip horizontally */
        transform: translateX(10vw) translateY(0) scaleX(-1) rotate(-15deg) scale(0.8);
    }
    20% {
        opacity: 0.5;
        transform: translateX(0vw) translateY(5vh) scaleX(-1) rotate(-5deg) scale(1);
    }
    40% {
        opacity: 0.7;
        transform: translateX(-15vw) translateY(2vh) scaleX(-1) rotate(-25deg) scale(1.2);
    }
    60% {
        opacity: 0.7;
        transform: translateX(-30vw) translateY(8vh) scaleX(-1) rotate(-15deg) scale(1);
    }
    80% {
        opacity: 0.5;
        transform: translateX(-45vw) translateY(3vh) scaleX(-1) rotate(-25deg) scale(0.9);
    }
    100% {
        opacity: 0;
        transform: translateX(-60vw) translateY(0) scaleX(-1) rotate(-15deg) scale(0.8);
    }
}

.hero-section .hero-content[b-9a7osopxfo]::after {
    bottom: -10vh;
    left: -10vw;
    animation: fishSwimBottomLeft-b-9a7osopxfo 25s linear infinite 5s;
    /* Initially facing right direction */
    transform: scaleX(1);
}

@keyframes fishSwimBottomLeft-b-9a7osopxfo {
    0% {
        opacity: 0;
        /* Swimming right, so keep normal orientation */
        transform: translateX(0) translateY(0) scaleX(1) rotate(15deg) scale(0.6);
    }
    20% {
        opacity: 0.4;
        transform: translateX(20vw) translateY(-5vh) scaleX(1) rotate(25deg) scale(0.8);
    }
    40% {
        opacity: 0.6;
        transform: translateX(35vw) translateY(-2vh) scaleX(1) rotate(15deg) scale(1);
    }
    60% {
        opacity: 0.6;
        transform: translateX(50vw) translateY(-8vh) scaleX(1) rotate(25deg) scale(0.9);
    }
    80% {
        opacity: 0.4;
        transform: translateX(70vw) translateY(-3vh) scaleX(1) rotate(15deg) scale(0.7);
    }
    100% {
        opacity: 0;
        transform: translateX(90vw) translateY(0) scaleX(1) rotate(25deg) scale(0.6);
    }
}

/* 🎣 FISHING LINE */
.hero-section[b-9a7osopxfo]::before {
    content: '';
    position: absolute;
    top: -5vh;
    right: 30%;
    width: 2px;
    height: 25vh;
    background: linear-gradient(to bottom,
        rgba(139, 69, 19, 0.1) 0%,
        rgba(139, 69, 19, 0.2) 85%,
        rgba(192, 192, 192, 0.3) 95%,
        rgba(192, 192, 192, 0.3) 100%);
    transform-origin: top center;
    animation: fishingLineSwing-b-9a7osopxfo 8s ease-in-out infinite;
    pointer-events: none;
}

/* Simple ripple container */
.ripple-container[b-9a7osopxfo] {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -20px 0 0 -20px;
    width: 40px;
    height: 40px;
    z-index: 0;
    pointer-events: none;
}

@keyframes fishingLineSwing-b-9a7osopxfo {
    0% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
    100% { transform: rotate(-2deg); }
}

/* 🐟 ADDITIONAL FISH FOR MORE LIVELY SCENE */
/* Small fish swimming from right to left */
.hero-section[b-9a7osopxfo]::before {
    content: '\f578'; /* Font Awesome fish */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.2);
    z-index: 0;
    animation: smallFishRight-b-9a7osopxfo 30s linear infinite 8s;
    pointer-events: none;
    top: 25%;
    right: -5%;
}

@keyframes smallFishRight-b-9a7osopxfo {
    0% {
        opacity: 0;
        /* Swimming left, so flip horizontally */
        transform: translateX(0) translateY(0) scaleX(-1) rotate(5deg) scale(0.5);
    }
    10% {
        opacity: 0.3;
        transform: translateX(-10vw) translateY(2vh) scaleX(-1) rotate(-5deg) scale(0.6);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50vw) translateY(-5vh) scaleX(-1) rotate(10deg) scale(0.7);
    }
    90% {
        opacity: 0.3;
        transform: translateX(-90vw) translateY(3vh) scaleX(-1) rotate(-5deg) scale(0.6);
    }
    100% {
        opacity: 0;
        transform: translateX(-100vw) translateY(0) scaleX(-1) rotate(5deg) scale(0.5);
    }
}

/* Add a group of tiny fish */
.hero-content[b-9a7osopxfo]::after {
    content: '\f578 \f578 \f578'; /* Three fish */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 0.7rem;
    letter-spacing: 1rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 0;
    animation: fishSchool-b-9a7osopxfo 40s linear infinite 3s;
    pointer-events: none;
    top: -20vh;
    left: 30%;
    width: auto;
    white-space: nowrap;
}

/* Ripple effect styling */
.ripple[b-9a7osopxfo],
.ripple[b-9a7osopxfo]:before,
.ripple[b-9a7osopxfo]:after {
    display: block;
    border-radius: 2px;
    width: 2px;
    height: 2px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.ripple[b-9a7osopxfo] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ripple[b-9a7osopxfo]:before,
.ripple[b-9a7osopxfo]:after {
    content: '';
    position: absolute;
}

.ripple[b-9a7osopxfo]:before {
    top: 5px;
    left: 25px;
}

.ripple[b-9a7osopxfo]:after {
    top: 25px;
    left: 0;
}

@keyframes rippleEffect-b-9a7osopxfo {
    0% {
        box-shadow: 0 0 0 0 transparent,
                   0 0 0 0 transparent,
                   0 0 0 0 transparent,
                   0 0 0 0 transparent;
    }
    15% {
        box-shadow: 0 0 0 0 var(--primary),
                   0 0 0 0 rgba(255, 255, 255, 0.4),
                   0 0 0 0 var(--primary),
                   0 0 0 0 rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 40px 200px rgba(var(--primary-rgb), 0.3),
                   0 0 10px 210px transparent,
                   0 0 30px 220px rgba(var(--primary-rgb), 0.2),
                   0 0 5px 230px transparent;
    }
}

@keyframes fishSchool-b-9a7osopxfo {
    0% {
        opacity: 0;
        transform: translateX(-20vw) translateY(0) scaleX(1) rotate(10deg) scale(0.7);
    }
    10% {
        opacity: 0.4;
        transform: translateX(-10vw) translateY(15vh) scaleX(1) rotate(15deg) scale(0.8);
    }
    40% {
        opacity: 0.6;
        transform: translateX(20vw) translateY(25vh) scaleX(1) rotate(20deg) scale(1);
    }
    70% {
        opacity: 0.4;
        transform: translateX(40vw) translateY(35vh) scaleX(1) rotate(15deg) scale(0.9);
    }
    100% {
        opacity: 0;
        transform: translateX(60vw) translateY(45vh) scaleX(1) rotate(10deg) scale(0.8);
    }
}


.hero-content[b-9a7osopxfo] {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title[b-9a7osopxfo] {
    font-size: var(--font-size-xxxl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle[b-9a7osopxfo] {
    font-size: var(--font-size-lg);
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section[b-9a7osopxfo] {
        min-height: 50vh;
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .hero-title[b-9a7osopxfo] {
        font-size: var(--font-size-xxl);
    }

    .hero-subtitle[b-9a7osopxfo] {
        font-size: var(--font-size-base);
    }
}
/* /Components/UI/Layout/Section.razor.rz.scp.css */
/* /Components/UI/PageHeader.razor.rz.scp.css */
.page-header[b-1k831ywazh] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.page-title[b-1k831ywazh] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0 0 0.25rem 0;
}

.page-subtitle[b-1k831ywazh] {
    color: var(--gray-600);
    margin: 0;
    font-size: 1rem;
}

.page-header-actions[b-1k831ywazh] {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Hero variant */
.page-header.hero[b-1k831ywazh] {
    background-color: var(--primary);
    color: white;
    margin: -2rem -2rem 2rem -2rem;
    padding: 3rem 2rem;
    border-bottom: none;
    border-radius: 0;
}

.page-header.hero .page-title[b-1k831ywazh] {
    color: white;
    font-size: 2.5rem;
}

.page-header.hero .page-subtitle[b-1k831ywazh] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
}

@media (min-width: 768px) {
    .page-header[b-1k831ywazh] {
        flex-direction: row;
        align-items: center;
    }

    .page-header-actions[b-1k831ywazh] {
        margin-top: 0;
    }

    .page-header.hero[b-1k831ywazh] {
        padding: 4rem 2rem;
    }

    .page-header.hero .page-title[b-1k831ywazh] {
        font-size: 3rem;
    }
}
/* /Components/UI/Testing/Menus/MenuItemLink.razor.rz.scp.css */
.menu-item[b-8t09bca9i4] {
    display: inline-block;
}

.menu-link[b-8t09bca9i4] {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #0066cc;
    text-decoration: none;
    border-radius: 4px;
}

.menu-link:hover[b-8t09bca9i4] {
    background-color: #f0f0f0;
}

[b-8t09bca9i4] i {
    margin-right: 0.5rem;
}
/* /Components/UI/Testing/Menus/MenuList.razor.rz.scp.css */
.menu-list[b-fcfd0w1nzm] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 0.5rem;
}
/* /Layout/AuthLayout.razor.rz.scp.css */
.auth-layout[b-bv5u1i6l4v] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--gradient-primary);
}

.auth-header[b-bv5u1i6l4v] {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.auth-brand[b-bv5u1i6l4v] {
    display: flex;
    align-items: center;
}

.auth-brand a[b-bv5u1i6l4v] {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.auth-brand i[b-bv5u1i6l4v] {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.auth-content[b-bv5u1i6l4v] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card[b-bv5u1i6l4v] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .auth-card[b-bv5u1i6l4v] {
        padding: 1.5rem;
    }
}
/* /Layout/DashboardLayout.razor.rz.scp.css */
.dashboard-layout[b-0o7s25rjd2] {
    display: flex;
    min-height: 100vh;
    background-color: var(--surface-background, #f8f9fa);
    color: var(--text-primary, #212529);
}

/* Dashboard specific styles */
.dashboard-container[b-0o7s25rjd2] {
    padding: 1.5rem;
    width: 100%;
}

/* Dashboard Header Styles */
.dashboard-header-left h1[b-0o7s25rjd2] {
    color: var(--heading-color, #2c3e50);
    font-weight: 600;
}

.dashboard-header-right .weather-widget[b-0o7s25rjd2] {
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Sidebar styles */
.dashboard-sidebar[b-0o7s25rjd2] {
    width: 270px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: width 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.dashboard-sidebar.collapsed[b-0o7s25rjd2] {
    width: 70px;
}

.dashboard-main[b-0o7s25rjd2] {
    margin-left: 270px;
    transition: margin-left 0.3s ease;
    width: calc(100% - 270px);
    min-height: 100vh;
}

.dashboard-main.sidebar-collapsed[b-0o7s25rjd2] {
    margin-left: 70px;
    width: calc(100% - 70px);
}

.sidebar-content[b-0o7s25rjd2] {
    padding: 1.5rem 1rem;
}

.sidebar-header[b-0o7s25rjd2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-brand[b-0o7s25rjd2] {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary, #0d6efd);
    font-weight: 700;
    font-size: 1.25rem;
}

.sidebar-brand i[b-0o7s25rjd2] {
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.sidebar-toggle[b-0o7s25rjd2] {
    background: none;
    border: none;
    color: var(--gray-600, #6c757d);
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle:hover[b-0o7s25rjd2] {
    background-color: rgba(0, 0, 0, 0.05);
}

.sidebar-nav[b-0o7s25rjd2] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.nav-section[b-0o7s25rjd2] {
    margin-bottom: 1.5rem;
}

.nav-section-title[b-0o7s25rjd2] {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500, #adb5bd);
    margin-bottom: 0.75rem;
    padding: 0 1rem;
    letter-spacing: 0.5px;
}

.nav-items[b-0o7s25rjd2] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item[b-0o7s25rjd2] {
    margin-bottom: 0.25rem;
}

.nav-link[b-0o7s25rjd2] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--gray-700, #495057);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.nav-link:hover[b-0o7s25rjd2] {
    background-color: rgba(13, 110, 253, 0.05);
    color: var(--primary, #0d6efd);
}

.nav-link.active[b-0o7s25rjd2] {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary, #0d6efd);
    font-weight: 500;
}

.nav-link i[b-0o7s25rjd2] {
    width: 20px;
    margin-right: 0.75rem;
    text-align: center;
}

/* Floating action button */
.floating-action-button[b-0o7s25rjd2] {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 900;
}

.fab-button[b-0o7s25rjd2] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary, #0d6efd);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fab-button:hover[b-0o7s25rjd2] {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.4);
}

.sidebar-link[b-0o7s25rjd2] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    transition: all 0.2s ease;
}

.sidebar-link:hover[b-0o7s25rjd2] {
    background-color: rgba(var(--primary-rgb), 0.05);
    color: var(--water-medium);
}

.sidebar-link.active[b-0o7s25rjd2] {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--water-medium);
    font-weight: 500;
}

.sidebar-link i[b-0o7s25rjd2] {
    width: 1.25rem;
    text-align: center;
    font-size: 1rem;
}

/* Main content area */
.dashboard-main-content[b-0o7s25rjd2] {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dashboard-content-container[b-0o7s25rjd2] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

/* Dashboard card styles */
.card[b-0o7s25rjd2] {
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.card:hover[b-0o7s25rjd2] {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-header[b-0o7s25rjd2] {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.25rem;
}

/* Activity feed styling */
.activity-feed .activity-icon[b-0o7s25rjd2] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge styling */
.badge[b-0o7s25rjd2] {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 0.375rem;
}

/* Action buttons */
.btn-primary[b-0o7s25rjd2] {
    background-color: var(--primary, #0d6efd);
    border-color: var(--primary, #0d6efd);
    font-weight: 500;
}

.btn-outline-primary[b-0o7s25rjd2] {
    color: var(--primary, #0d6efd);
    border-color: var(--primary, #0d6efd);
    font-weight: 500;
}

.btn-outline-primary:hover[b-0o7s25rjd2] {
    background-color: var(--primary, #0d6efd);
    color: white;
}

/* Mobile dashboard navigation */
.mobile-dashboard-nav[b-0o7s25rjd2] {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 90;
    justify-content: space-around;
}

.mobile-dash-link[b-0o7s25rjd2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.5rem;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.7rem;
    flex: 1;
    text-align: center;
}

.mobile-dash-link i[b-0o7s25rjd2] {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.mobile-dash-link.active[b-0o7s25rjd2] {
    color: var(--water-medium);
}

/* Responsive adjustments */
@media (min-width: 992px) {
    .mobile-dashboard-header[b-0o7s25rjd2] {
        display: none;
    }

    .floating-action-button[b-0o7s25rjd2] {
        display: none;
    }
}

@media (max-width: 991px) {
    .dashboard-sidebar[b-0o7s25rjd2] {
        display: none;
    }

    .dashboard-main[b-0o7s25rjd2] {
        margin-left: 0;
        width: 100%;
    }

    .mobile-dashboard-header[b-0o7s25rjd2] {
        display: flex;
        align-items: center;
        padding: 1rem;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 900;
    }

    .mobile-sidebar[b-0o7s25rjd2] {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background-color: white;
        z-index: 1010;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .mobile-sidebar.show[b-0o7s25rjd2] {
        left: 0;
    }

    .mobile-sidebar-overlay[b-0o7s25rjd2] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: none;
    }

    .mobile-sidebar-overlay.show[b-0o7s25rjd2] {
        display: block;
    }
}

@media (max-width: 991px) {
    .dashboard-content-container[b-0o7s25rjd2] {
        padding-bottom: 5rem; /* Space for mobile navigation */
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Styles */
.app-container[b-tac5ek9npd] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content[b-tac5ek9npd] {
    flex: 1;
    padding-bottom: 2rem;
    width: 100%;
}

/* Global Font and Base Styles */
body[b-tac5ek9npd] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Ensure consistent font across all elements */
h1[b-tac5ek9npd], h2[b-tac5ek9npd], h3[b-tac5ek9npd], h4[b-tac5ek9npd], h5[b-tac5ek9npd], h6[b-tac5ek9npd], p[b-tac5ek9npd], div[b-tac5ek9npd], span[b-tac5ek9npd], a[b-tac5ek9npd], button[b-tac5ek9npd] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Footer styles */
.main-footer[b-tac5ek9npd] {
    background-color: var(--water-deep);
    color: white;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content[b-tac5ek9npd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand[b-tac5ek9npd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-copyright[b-tac5ek9npd] {
    font-size: 0.875rem;
    color: var(--gray-300);
}

/* Error UI */
.blazor-error-ui[b-tac5ek9npd] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    background-color: rgba(255, 0, 0, 0.1);
    bottom: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    color: var(--danger);
    display: none;
    left: 0;
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.blazor-error-ui .dismiss[b-tac5ek9npd] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0.5rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .footer-content[b-tac5ek9npd] {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .main-content[b-tac5ek9npd] {
        padding-bottom: 5rem; /* Space for mobile navigation */
    }
}
/* /Layout/SandboxLayout.razor.rz.scp.css */
/* Sandbox Layout Styles */

.sandbox-container[b-bjxdo47l0f] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.sandbox-header[b-bjxdo47l0f] {
    background: linear-gradient(135deg, #3494e6, #ec6ead);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sandbox-header .container[b-bjxdo47l0f] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sandbox-header h1[b-bjxdo47l0f] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.back-to-app[b-bjxdo47l0f] {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.back-to-app:hover[b-bjxdo47l0f] {
    background-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transform: translateY(-2px);
}

.sandbox-content[b-bjxdo47l0f] {
    flex-grow: 1;
    padding: 2rem 0;
}

.sandbox-footer[b-bjxdo47l0f] {
    background-color: #343a40;
    color: rgba(255, 255, 255, 0.6);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

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

/* Component Display Sections */
.component-section[b-bjxdo47l0f] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.component-section h2[b-bjxdo47l0f] {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.component-demo[b-bjxdo47l0f] {
    margin-bottom: 1.5rem;
}

.component-controls[b-bjxdo47l0f] {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 1rem;
    margin-top: 1rem;
}

.control-group[b-bjxdo47l0f] {
    margin-bottom: 1rem;
}

.control-group label[b-bjxdo47l0f] {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.code-section[b-bjxdo47l0f] {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin-top: 1rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

/* Variants */
.dark-theme[b-bjxdo47l0f] {
    background-color: #343a40;
    color: white;
}

.bordered[b-bjxdo47l0f] {
    border: 1px solid #dee2e6;
}

/* Responsive */
@media (max-width: 768px) {
    .sandbox-header h1[b-bjxdo47l0f] {
        font-size: 1.25rem;
    }

    .component-section[b-bjxdo47l0f] {
        padding: 1rem;
    }
}
/* /Pages/Dashboard/CatchLog/Index.razor.rz.scp.css */
/* Catch Log Page Specific Styles */
.catch-log-container[b-cfus2jn4o3] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--sand-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.catch-log-header[b-cfus2jn4o3] {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand-medium);
}

.catch-log-header h1[b-cfus2jn4o3] {
    font-size: 2rem;
    color: var(--water-deep);
    margin-bottom: 0.5rem;
}

.catch-log-header .lead[b-cfus2jn4o3] {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.catch-log-header .btn-primary[b-cfus2jn4o3] {
    align-self: flex-start;
}

/* Empty State */
.empty-state[b-cfus2jn4o3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.empty-icon[b-cfus2jn4o3] {
    font-size: 4rem;
    color: var(--sand-dark);
    margin-bottom: 1.5rem;
}

.empty-state h3[b-cfus2jn4o3] {
    margin: 0 0 0.5rem 0;
    color: var(--water-deep);
}

.empty-state p[b-cfus2jn4o3] {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.btn-primary[b-cfus2jn4o3] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--water-medium);
    color: white;
    border: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover[b-cfus2jn4o3] {
    background-color: var(--water-deep);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .catch-log-header[b-cfus2jn4o3] {
        align-items: center;
    }

    .catch-log-header .btn-primary[b-cfus2jn4o3] {
        align-self: center;
        width: 100%;
    }
}
/* /Pages/Dashboard/Community/Index.razor.rz.scp.css */
/* Community Page Specific Styles */
.community-container[b-dmd7s03bqr] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--sand-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.community-header[b-dmd7s03bqr] {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand-medium);
}

.community-header h1[b-dmd7s03bqr] {
    font-size: 2rem;
    color: var(--water-deep);
    margin-bottom: 0.5rem;
}

.community-header .lead[b-dmd7s03bqr] {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* Empty State */
.empty-state[b-dmd7s03bqr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.empty-icon[b-dmd7s03bqr] {
    font-size: 4rem;
    color: var(--sand-dark);
    margin-bottom: 1.5rem;
}

.empty-state h3[b-dmd7s03bqr] {
    margin: 0 0 0.5rem 0;
    color: var(--water-deep);
}

.empty-state p[b-dmd7s03bqr] {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .community-header[b-dmd7s03bqr] {
        align-items: center;
    }
}
/* /Pages/Dashboard/FishBitingGuide/Index.razor.rz.scp.css */
/* Fish Biting Guide Page Specific Styles */
.fish-guide-container[b-cig93sq60p] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--sand-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.guide-header[b-cig93sq60p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand-medium);
}

.guide-header-content h1[b-cig93sq60p] {
    font-size: 2rem;
    color: var(--water-deep);
    margin-bottom: 0.5rem;
}

.guide-header-content .lead[b-cig93sq60p] {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* Subscription Info */
.subscription-info[b-cig93sq60p] {
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    min-width: 200px;
}

.free-badge[b-cig93sq60p] {
    background-color: var(--sand-medium);
    border: 1px solid var(--sand-dark);
}

.premium-badge[b-cig93sq60p] {
    background-color: rgba(var(--primary-rgb), 0.1);
    border: 1px solid var(--water-medium);
}

.pro-badge[b-cig93sq60p] {
    background-color: rgba(var(--fish-gold), 0.1);
    border: 1px solid var(--fish-gold);
}

.tier-label[b-cig93sq60p] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.free-badge .tier-label[b-cig93sq60p] {
    background-color: var(--sand-dark);
    color: var(--water-deep);
}

.premium-badge .tier-label[b-cig93sq60p] {
    background-color: var(--water-medium);
    color: white;
}

.pro-badge .tier-label[b-cig93sq60p] {
    background-color: var(--fish-gold);
    color: var(--water-deep);
}

.upgrade-link[b-cig93sq60p] {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--fish-orange);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
}

.upgrade-link:hover[b-cig93sq60p] {
    text-decoration: underline;
}

/* Main Content Layout */
.guide-content[b-cig93sq60p] {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
}

/* Locations Panel */
.locations-panel[b-cig93sq60p] {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.panel-header[b-cig93sq60p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--sand-medium);
}

.panel-header h2[b-cig93sq60p] {
    font-size: 1.25rem;
    color: var(--water-deep);
    margin: 0;
}

.btn-add-location[b-cig93sq60p] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--water-medium);
    color: white;
    border: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-location:hover[b-cig93sq60p] {
    background-color: var(--water-deep);
    transform: translateY(-2px);
}

.locations-list[b-cig93sq60p] {
    flex: 1;
    overflow-y: auto;
    max-height: 500px;
}

.location-card[b-cig93sq60p] {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--sand-medium);
    cursor: pointer;
    transition: all 0.2s ease;
}

.location-card:hover[b-cig93sq60p] {
    background-color: var(--sand-light);
}

.location-card.selected[b-cig93sq60p] {
    background-color: rgba(var(--primary-rgb), 0.1);
    border-left: 4px solid var(--water-medium);
}

.location-icon[b-cig93sq60p] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--border-radius-full);
    background-color: var(--water-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.location-icon i[b-cig93sq60p] {
    font-size: 1.25rem;
    color: var(--water-medium);
}

.location-info[b-cig93sq60p] {
    flex: 1;
    min-width: 0;
}

.location-info h4[b-cig93sq60p] {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--water-deep);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-info p[b-cig93sq60p] {
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-activity[b-cig93sq60p] {
    margin-left: 1rem;
    text-align: right;
    min-width: 80px;
}

.activity-meter[b-cig93sq60p] {
    height: 6px;
    background-color: var(--sand-medium);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.activity-fill[b-cig93sq60p] {
    height: 100%;
    border-radius: var(--border-radius-full);
}

.activity-label[b-cig93sq60p] {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Activity Colors */
.excellent .activity-fill[b-cig93sq60p] {
    background-color: var(--kelp-green);
}

.good .activity-fill[b-cig93sq60p] {
    background-color: var(--water-medium);
}

.fair .activity-fill[b-cig93sq60p] {
    background-color: var(--fish-gold);
}

.poor .activity-fill[b-cig93sq60p] {
    background-color: var(--coral-red);
}

.excellent .activity-label[b-cig93sq60p] {
    color: var(--kelp-green);
}

.good .activity-label[b-cig93sq60p] {
    color: var(--water-medium);
}

.fair .activity-label[b-cig93sq60p] {
    color: var(--fish-gold);
}

.poor .activity-label[b-cig93sq60p] {
    color: var(--coral-red);
}

/* Empty States */
.empty-state[b-cig93sq60p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.empty-icon[b-cig93sq60p] {
    font-size: 3rem;
    color: var(--sand-dark);
    margin-bottom: 1rem;
}

.empty-state h3[b-cig93sq60p] {
    margin: 0 0 0.5rem 0;
    color: var(--water-deep);
}

.empty-state p[b-cig93sq60p] {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Details Panel */
.details-panel[b-cig93sq60p] {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.location-details[b-cig93sq60p] {
    padding: 1.5rem;
}

.details-header[b-cig93sq60p] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand-medium);
}

.details-header h2[b-cig93sq60p] {
    font-size: 1.5rem;
    color: var(--water-deep);
    margin: 0 0 0.5rem 0;
}

.details-header p[b-cig93sq60p] {
    margin: 0;
    color: var(--gray-600);
}

.details-actions[b-cig93sq60p] {
    display: flex;
    gap: 0.5rem;
}

.btn-icon[b-cig93sq60p] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--border-radius-full);
    background-color: var(--sand-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon i[b-cig93sq60p] {
    font-size: 1rem;
    color: var(--gray-600);
}

.btn-icon:hover[b-cig93sq60p] {
    background-color: var(--sand-medium);
}

.btn-icon.danger:hover[b-cig93sq60p] {
    background-color: var(--coral-red);
}

.btn-icon.danger:hover i[b-cig93sq60p] {
    color: white;
}

/* Empty Details State */
.empty-details[b-cig93sq60p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.empty-details .empty-icon[b-cig93sq60p] {
    font-size: 4rem;
    color: var(--sand-dark);
    margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
    .guide-header[b-cig93sq60p] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .subscription-info[b-cig93sq60p] {
        width: 100%;
    }
}
/* /Pages/Dashboard/Index.razor.rz.scp.css */
.dashboard-container[b-zrgyzjc5p3] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--sand-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.dashboard-header[b-zrgyzjc5p3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand-medium);
}

.dashboard-header h1[b-zrgyzjc5p3] {
    font-size: 2rem;
    color: var(--water-deep);
    margin: 0;
    font-weight: 600;
}

.subscription-badge[b-zrgyzjc5p3] {
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subscription-badge[b-zrgyzjc5p3]::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.free-badge[b-zrgyzjc5p3] {
    background-color: var(--sand-medium);
    color: var(--gray-700);
    border: 1px solid var(--sand-dark);
}

.free-badge[b-zrgyzjc5p3]::before {
    background-color: var(--gray-500);
}

.premium-badge[b-zrgyzjc5p3] {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--water-medium);
    border: 1px solid var(--water-medium);
}

.premium-badge[b-zrgyzjc5p3]::before {
    background-color: var(--water-medium);
}

.pro-badge[b-zrgyzjc5p3] {
    background-color: rgba(241, 196, 15, 0.1);
    color: var(--fish-gold);
    border: 1px solid var(--fish-gold);
}

.pro-badge[b-zrgyzjc5p3]::before {
    background-color: var(--fish-gold);
}

.feature-grid[b-zrgyzjc5p3] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-card[b-zrgyzjc5p3] {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover[b-zrgyzjc5p3] {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.1);
}

.feature-icon[b-zrgyzjc5p3] {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--border-radius-lg);
    background-color: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon[b-zrgyzjc5p3]::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    opacity: 0.5;
}

.feature-card:hover .feature-icon[b-zrgyzjc5p3] {
    transform: scale(1.05);
    background-color: rgba(var(--primary-rgb), 0.15);
}

.feature-icon i[b-zrgyzjc5p3] {
    font-size: 1.5rem;
    color: var(--water-medium);
    transition: all 0.3s ease;
}
/* Dashboard container styles */
.dashboard-container[b-zrgyzjc5p3] {
    padding: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

/* Dashboard header section */
.dashboard-header[b-zrgyzjc5p3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-header h1[b-zrgyzjc5p3] {
    font-size: 2rem;
    color: var(--water-deep);
    margin: 0;
    font-weight: 600;
}

/* Subscription badge styles */
.subscription-badge[b-zrgyzjc5p3] {
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.subscription-badge[b-zrgyzjc5p3]::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.free-badge[b-zrgyzjc5p3] {
    background-color: var(--sand-medium);
    color: var(--gray-700);
    border: 1px solid var(--sand-dark);
}

.free-badge[b-zrgyzjc5p3]::before {
    background-color: var(--gray-500);
}

.premium-badge[b-zrgyzjc5p3] {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--water-medium);
    border: 1px solid var(--water-medium);
}

.premium-badge[b-zrgyzjc5p3]::before {
    background-color: var(--water-medium);
}

.pro-badge[b-zrgyzjc5p3] {
    background-color: rgba(241, 196, 15, 0.1);
    color: var(--fish-gold);
    border: 1px solid var(--fish-gold);
}

.pro-badge[b-zrgyzjc5p3]::before {
    background-color: var(--fish-gold);
}

/* Feature grid layout */
.dashboard-content[b-zrgyzjc5p3] {
    padding: 1rem 0;
}

.feature-grid[b-zrgyzjc5p3] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* Feature card styles */
.feature-card[b-zrgyzjc5p3] {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.feature-card:hover[b-zrgyzjc5p3] {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.1);
}

/* Feature icon styles */
.feature-icon[b-zrgyzjc5p3] {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--border-radius-lg);
    background-color: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon[b-zrgyzjc5p3]::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    opacity: 0.5;
}

.feature-card:hover .feature-icon[b-zrgyzjc5p3] {
    transform: scale(1.05);
    background-color: rgba(var(--primary-rgb), 0.15);
}

.feature-icon i[b-zrgyzjc5p3] {
    font-size: 1.5rem;
    color: var(--water-medium);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i[b-zrgyzjc5p3] {
    color: var(--water-deep);
}

/* Feature card text content */
.feature-card h3[b-zrgyzjc5p3] {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--water-deep);
    font-weight: 600;
}

.feature-card p[b-zrgyzjc5p3] {
    color: var(--gray-600);
    margin-bottom: 1.75rem;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Feature card links */
.feature-link[b-zrgyzjc5p3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.2rem;
    background-color: rgba(var(--primary-rgb), 0.05);
    border-radius: var(--border-radius-md);
    color: var(--water-medium);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-link:hover[b-zrgyzjc5p3] {
    background-color: rgba(var(--primary-rgb), 0.1);
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.feature-link span[b-zrgyzjc5p3] {
    transition: transform 0.3s ease;
}

.feature-link:hover span[b-zrgyzjc5p3] {
    transform: translateX(-4px);
}

.feature-link i[b-zrgyzjc5p3] {
    transition: transform 0.3s ease;
}

.feature-link:hover i[b-zrgyzjc5p3] {
    transform: translateX(4px);
}

/* Feature card footer */
.feature-footer[b-zrgyzjc5p3] {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(var(--primary-rgb), 0.1);
}

.feature-footer i[b-zrgyzjc5p3] {
    color: var(--fish-orange);
}

/* Premium feature styling */
.premium-feature[b-zrgyzjc5p3] {
    position: relative;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.premium-feature[b-zrgyzjc5p3]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--water-medium) 50%, transparent 50%);
    border-radius: 0 var(--border-radius-lg) 0 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.premium-feature:hover[b-zrgyzjc5p3]::before {
    opacity: 1;
}

.premium-feature[b-zrgyzjc5p3]::after {
    content: '★';
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 12px;
    z-index: 2;
}

.premium-feature .feature-icon[b-zrgyzjc5p3] {
    background-color: rgba(var(--primary-rgb), 0.15);
}

.premium-feature .feature-icon i[b-zrgyzjc5p3] {
    color: var(--water-medium);
}

/* Responsive styles */
@media (max-width: 768px) {
    .dashboard-container[b-zrgyzjc5p3] {
        padding: 1.5rem;
        margin: 1rem 0.75rem;
        border-radius: var(--border-radius-md);
    }

    .feature-grid[b-zrgyzjc5p3] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .dashboard-header[b-zrgyzjc5p3] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }

    .feature-card[b-zrgyzjc5p3] {
        padding: 1.5rem;
    }

    .feature-icon[b-zrgyzjc5p3] {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card h3[b-zrgyzjc5p3] {
        text-align: center;
    }

    .feature-card p[b-zrgyzjc5p3] {
        text-align: center;
    }
}
.feature-card:hover .feature-icon i[b-zrgyzjc5p3] {
    color: var(--water-deep);
}

.feature-card h3[b-zrgyzjc5p3] {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--water-deep);
    font-weight: 600;
}

.feature-card p[b-zrgyzjc5p3] {
    color: var(--gray-600);
    margin-bottom: 1.75rem;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-link[b-zrgyzjc5p3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.2rem;
    background-color: rgba(var(--primary-rgb), 0.05);
    border-radius: var(--border-radius-md);
    color: var(--water-medium);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-link:hover[b-zrgyzjc5p3] {
    background-color: rgba(var(--primary-rgb), 0.1);
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.feature-link span[b-zrgyzjc5p3] {
    transition: transform 0.3s ease;
}

.feature-link:hover span[b-zrgyzjc5p3] {
    transform: translateX(-4px);
}

.feature-link i[b-zrgyzjc5p3] {
    transition: transform 0.3s ease;
}

.feature-link:hover i[b-zrgyzjc5p3] {
    transform: translateX(4px);
}

.feature-footer[b-zrgyzjc5p3] {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(var(--primary-rgb), 0.1);
}

.feature-footer i[b-zrgyzjc5p3] {
    color: var(--fish-orange);
}

.premium-feature[b-zrgyzjc5p3] {
    position: relative;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.premium-feature[b-zrgyzjc5p3]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--water-medium) 50%, transparent 50%);
    border-radius: 0 var(--border-radius-lg) 0 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.premium-feature:hover[b-zrgyzjc5p3]::before {
    opacity: 1;
}

.premium-feature[b-zrgyzjc5p3]::after {
    content: '★';
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 12px;
    z-index: 2;
}

.premium-feature .feature-icon[b-zrgyzjc5p3] {
    background-color: rgba(var(--primary-rgb), 0.15);
}

.premium-feature .feature-icon i[b-zrgyzjc5p3] {
    color: var(--water-medium);
}

@media (max-width: 768px) {
    .dashboard-container[b-zrgyzjc5p3] {
        padding: 1.5rem;
        margin: 0 0.75rem;
        border-radius: var(--border-radius-md);
    }

    .feature-grid[b-zrgyzjc5p3] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .dashboard-header[b-zrgyzjc5p3] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }

    .feature-card[b-zrgyzjc5p3] {
        padding: 1.5rem;
    }

    .feature-icon[b-zrgyzjc5p3] {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card h3[b-zrgyzjc5p3] {
        text-align: center;
    }

    .feature-card p[b-zrgyzjc5p3] {
        text-align: center;
    }
}
/* /Pages/Dashboard/SpeciesDatabase/Index.razor.rz.scp.css */
/* Species Database Page Specific Styles */
.species-database-container[b-vfasz1hzxq] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--sand-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.species-database-header[b-vfasz1hzxq] {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand-medium);
}

.species-database-header h1[b-vfasz1hzxq] {
    font-size: 2rem;
    color: var(--water-deep);
    margin-bottom: 0.5rem;
}

.species-database-header .lead[b-vfasz1hzxq] {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* Empty State */
.empty-state[b-vfasz1hzxq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.empty-icon[b-vfasz1hzxq] {
    font-size: 4rem;
    color: var(--sand-dark);
    margin-bottom: 1.5rem;
}

.empty-state h3[b-vfasz1hzxq] {
    margin: 0 0 0.5rem 0;
    color: var(--water-deep);
}

.empty-state p[b-vfasz1hzxq] {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .species-database-header[b-vfasz1hzxq] {
        align-items: center;
    }
}
/* /Pages/Dashboard/Tournaments/Index.razor.rz.scp.css */
/* Tournaments Page Specific Styles */
.tournaments-container[b-lfumg3xhtc] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--sand-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.tournaments-header[b-lfumg3xhtc] {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand-medium);
}
.tournaments-container[b-lfumg3xhtc] {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.tournaments-header[b-lfumg3xhtc] {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.tournaments-header h1[b-lfumg3xhtc] {
    font-size: 1.75rem;
    color: var(--water-deep);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tournaments-header .lead[b-lfumg3xhtc] {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.tournaments-content[b-lfumg3xhtc] {
    min-height: 300px;
}

.empty-state[b-lfumg3xhtc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    background-color: var(--gray-50);
    border-radius: var(--border-radius-lg);
    border: 1px dashed var(--gray-300);
}

.empty-icon[b-lfumg3xhtc] {
    font-size: 4rem;
    color: var(--water-medium);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state h3[b-lfumg3xhtc] {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.empty-state p[b-lfumg3xhtc] {
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .tournaments-container[b-lfumg3xhtc] {
        padding: 1.5rem;
    }

    .empty-state[b-lfumg3xhtc] {
        padding: 2rem 1rem;
    }

    .empty-icon[b-lfumg3xhtc] {
        font-size: 3rem;
    }
}
.tournaments-header h1[b-lfumg3xhtc] {
    font-size: 2rem;
    color: var(--water-deep);
    margin-bottom: 0.5rem;
}

.tournaments-header .lead[b-lfumg3xhtc] {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* Empty State */
.empty-state[b-lfumg3xhtc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.empty-icon[b-lfumg3xhtc] {
    font-size: 4rem;
    color: var(--sand-dark);
    margin-bottom: 1.5rem;
}

.empty-state h3[b-lfumg3xhtc] {
    margin: 0 0 0.5rem 0;
    color: var(--water-deep);
}

.empty-state p[b-lfumg3xhtc] {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .tournaments-header[b-lfumg3xhtc] {
        align-items: center;
    }
}
/* /Pages/Dashboard/WeatherForecast/Index.razor.rz.scp.css */
/* Weather Forecast Page Specific Styles */
.weather-forecast-container[b-f1z64j6501] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--sand-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.weather-forecast-header[b-f1z64j6501] {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand-medium);
}

.weather-forecast-header h1[b-f1z64j6501] {
    font-size: 2rem;
    color: var(--water-deep);
    margin-bottom: 0.5rem;
}

.weather-forecast-header .lead[b-f1z64j6501] {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* Empty State */
.empty-state[b-f1z64j6501] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.empty-icon[b-f1z64j6501] {
    font-size: 4rem;
    color: var(--sand-dark);
    margin-bottom: 1.5rem;
}

.empty-state h3[b-f1z64j6501] {
    margin: 0 0 0.5rem 0;
    color: var(--water-deep);
}

.empty-state p[b-f1z64j6501] {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .weather-forecast-header[b-f1z64j6501] {
        align-items: center;
    }
}
/* /Pages/Error/AccessDenied.razor.rz.scp.css */
.access-denied-container[b-ep4lcl2c81] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(44, 62, 80, 0.1) 100%);
}

.access-denied-content[b-ep4lcl2c81] {
    text-align: center;
    max-width: 500px;
    padding: 3.5rem 3rem;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.access-denied-content[b-ep4lcl2c81]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral-red) 0%, var(--danger) 100%);
}

.access-denied-icon[b-ep4lcl2c81] {
    font-size: 4.5rem;
    color: var(--danger);
    margin-bottom: 1.5rem;
    animation: pulse-b-ep4lcl2c81 2s infinite;
    height: 90px;
    width: 90px;
    line-height: 90px;
    border-radius: 50%;
    background-color: rgba(231, 76, 60, 0.1);
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse-b-ep4lcl2c81 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(231, 76, 60, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.access-denied-content h1[b-ep4lcl2c81] {
    font-size: 2.25rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-weight: 700;
}

.access-denied-content p[b-ep4lcl2c81] {
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.access-denied-actions[b-ep4lcl2c81] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-primary[b-ep4lcl2c81], .btn-secondary[b-ep4lcl2c81] {
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary[b-ep4lcl2c81] {
    background-color: var(--water-medium);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.35);
}

.btn-secondary[b-ep4lcl2c81] {
    background-color: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-primary:hover[b-ep4lcl2c81], .btn-secondary:hover[b-ep4lcl2c81] {
    transform: translateY(-3px);
}

.btn-primary:hover[b-ep4lcl2c81] {
    background-color: #2980b9;
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.45);
}

.btn-secondary:hover[b-ep4lcl2c81] {
    background-color: var(--gray-100);
    border-color: var(--gray-400);
}

.btn-primary:active[b-ep4lcl2c81], .btn-secondary:active[b-ep4lcl2c81] {
    transform: translateY(-1px);
}

@media (min-width: 640px) {
    .access-denied-actions[b-ep4lcl2c81] {
        flex-direction: row;
        justify-content: center;
    }
}
/* /Pages/Landing/Features.razor.rz.scp.css */
.features-container[b-8zw0nuiy5f] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features-hero[b-8zw0nuiy5f] {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 3rem;
}

.features-hero h1[b-8zw0nuiy5f] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-hero .lead[b-8zw0nuiy5f] {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.features-section[b-8zw0nuiy5f] {
    padding: 2rem 0;
}

.features-grid[b-8zw0nuiy5f] {
    display: grid;
    gap: 3rem;
}

.feature-item[b-8zw0nuiy5f] {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon[b-8zw0nuiy5f] {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background-color: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-content[b-8zw0nuiy5f] {
    flex: 1;
}

.feature-content h3[b-8zw0nuiy5f] {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}

.feature-content p[b-8zw0nuiy5f] {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-tiers[b-8zw0nuiy5f] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tier[b-8zw0nuiy5f] {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e0e0e0;
}

.tier-label[b-8zw0nuiy5f] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.free .tier-label[b-8zw0nuiy5f] {
    background-color: #e0e0e0;
    color: #757575;
}

.premium .tier-label[b-8zw0nuiy5f] {
    background-color: #dcb36a;
    color: #5c4813;
}

.pro .tier-label[b-8zw0nuiy5f] {
    background-color: #3498db;
    color: white;
}

.tier ul[b-8zw0nuiy5f] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier li[b-8zw0nuiy5f] {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color-light);
}

.tier li[b-8zw0nuiy5f]::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.cta-section[b-8zw0nuiy5f] {
    text-align: center;
    padding: 4rem 2rem;
    margin: 3rem 0;
    background-color: rgba(var(--primary-rgb), 0.05);
    border-radius: 1rem;
}

.cta-section h2[b-8zw0nuiy5f] {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}

.cta-section p[b-8zw0nuiy5f] {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color-light);
}

.cta-button[b-8zw0nuiy5f] {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.cta-button:hover[b-8zw0nuiy5f] {
    background-color: var(--primary-dark);
}

@media (max-width: 992px) {
    .feature-tiers[b-8zw0nuiy5f] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feature-item[b-8zw0nuiy5f] {
        flex-direction: column;
        gap: 1rem;
    }

    .features-hero[b-8zw0nuiy5f] {
        padding: 3rem 1rem;
    }

    .features-hero h1[b-8zw0nuiy5f] {
        font-size: 2rem;
    }
}
/* /Pages/Landing/Home.razor.rz.scp.css */
.home-container[b-s8zh4amp1b] {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section */
.hero-section[b-s8zh4amp1b] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    color: white;
    border-radius: 0 0 20px 20px;
    margin-top: -1px;
    min-height: 500px;
}

.hero-content[b-s8zh4amp1b] {
    padding: 4rem 2rem 6rem 2rem;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1[b-s8zh4amp1b] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero-subtitle[b-s8zh4amp1b] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.9;
}

.hero-cta[b-s8zh4amp1b] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image[b-s8zh4amp1b] {
    display: none;
}

.hero-image img[b-s8zh4amp1b] {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: -10%;
    left: 0;
}

/* Features Preview */
.features-preview[b-s8zh4amp1b] {
    padding: 5rem 1.5rem;
    background-color: white;
}

.section-header[b-s8zh4amp1b] {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-header h2[b-s8zh4amp1b] {
    font-size: 2.25rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-header p[b-s8zh4amp1b] {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.features-grid[b-s8zh4amp1b] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card[b-s8zh4amp1b] {
    background-color: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.feature-icon[b-s8zh4amp1b] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3[b-s8zh4amp1b] {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.feature-card p[b-s8zh4amp1b] {
    color: var(--gray-600);
    line-height: 1.5;
}

.features-cta[b-s8zh4amp1b] {
    text-align: center;
}

/* Testimonials */
.testimonials[b-s8zh4amp1b] {
    padding: 5rem 1.5rem;
    background-color: var(--gray-50);
}

.testimonials-grid[b-s8zh4amp1b] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card[b-s8zh4amp1b] {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover[b-s8zh4amp1b] {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content[b-s8zh4amp1b] {
    margin-bottom: 1.5rem;
}

.testimonial-content p[b-s8zh4amp1b] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-700);
    font-style: italic;
}

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

.testimonial-avatar[b-s8zh4amp1b] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.testimonial-name[b-s8zh4amp1b] {
    font-weight: 600;
    color: var(--gray-800);
}

.testimonial-location[b-s8zh4amp1b] {
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (min-width: 768px) {
    .hero-section[b-s8zh4amp1b] {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .hero-content h1[b-s8zh4amp1b] {
        font-size: 3.5rem;
    }

    .hero-image[b-s8zh4amp1b] {
        display: block;
        position: relative;
        overflow: hidden;
    }
}

@media (min-width: 1200px) {
    .hero-content[b-s8zh4amp1b] {
        padding: 6rem 3rem 8rem 3rem;
    }
}
/* /Pages/Landing/Pricing.razor.rz.scp.css */
.pricing-container[b-xbwaz346av] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

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

.pricing-header h1[b-xbwaz346av] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}

.pricing-header .lead[b-xbwaz346av] {
    font-size: 1.25rem;
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-toggle[b-xbwaz346av] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.pricing-toggle span[b-xbwaz346av] {
    color: var(--text-color-light);
    font-weight: 500;
    transition: color 0.2s;
}

.pricing-toggle span.active[b-xbwaz346av] {
    color: var(--primary-color);
    font-weight: 600;
}

.switch[b-xbwaz346av] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input[b-xbwaz346av] {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider[b-xbwaz346av] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider[b-xbwaz346av]:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider[b-xbwaz346av] {
    background-color: var(--primary-color);
}

input:focus + .slider[b-xbwaz346av] {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider[b-xbwaz346av]:before {
    transform: translateX(26px);
}

.slider.round[b-xbwaz346av] {
    border-radius: 34px;
}

.slider.round[b-xbwaz346av]:before {
    border-radius: 50%;
}

.save-badge[b-xbwaz346av] {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 2rem;
    margin-left: 0.5rem;
}

.pricing-grid[b-xbwaz346av] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card[b-xbwaz346av] {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured[b-xbwaz346av] {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.most-popular[b-xbwaz346av] {
    position: absolute;
    top: 12px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 2.5rem;
    transform: rotate(45deg);
}

.pricing-card-header[b-xbwaz346av] {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card-header h3[b-xbwaz346av] {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}

.price[b-xbwaz346av] {
    margin-bottom: 1rem;
}

.price .amount[b-xbwaz346av] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period[b-xbwaz346av] {
    font-size: 0.875rem;
    color: var(--text-color-light);
}

.pricing-card-header p[b-xbwaz346av] {
    font-size: 0.875rem;
    color: var(--text-color-light);
}

.pricing-card-features[b-xbwaz346av] {
    padding: 2rem;
}

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

.pricing-card-features li[b-xbwaz346av] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.pricing-card-features i[b-xbwaz346av] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 0.75rem;
}

.pricing-card-features li:not(.unavailable) i[b-xbwaz346av] {
    color: var(--success-color);
}

.pricing-card-features li.unavailable[b-xbwaz346av] {
    color: var(--text-color-muted);
}

.pricing-card-features li.unavailable i[b-xbwaz346av] {
    color: var(--danger-color);
}

.pricing-card-footer[b-xbwaz346av] {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    position: relative;
}

.btn-primary[b-xbwaz346av], .btn-secondary[b-xbwaz346av] {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-primary[b-xbwaz346av] {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover:not(.disabled)[b-xbwaz346av] {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary[b-xbwaz346av] {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
}

.btn-secondary:hover:not(.disabled)[b-xbwaz346av] {
    background-color: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-2px);
}

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

.current-plan[b-xbwaz346av] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--success-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.current-plan.visible[b-xbwaz346av] {
    opacity: 1;
    visibility: visible;
}

.faq-section[b-xbwaz346av] {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2[b-xbwaz346av] {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-color-dark);
}

.faq-grid[b-xbwaz346av] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item h4[b-xbwaz346av] {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-color-dark);
}

.faq-item p[b-xbwaz346av] {
    font-size: 0.95rem;
    color: var(--text-color-light);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .pricing-grid[b-xbwaz346av] {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured[b-xbwaz346av] {
        transform: scale(1);
    }

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

    .faq-grid[b-xbwaz346av] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .pricing-header h1[b-xbwaz346av] {
        font-size: 2rem;
    }

    .pricing-toggle[b-xbwaz346av] {
        flex-direction: column;
    }
}
/* /Pages/Sandbox/ComponentCatalog.razor.rz.scp.css */
h1[b-zrcxbeuafl] {
    margin-bottom: 0.5rem;
    color: #333;
}

.lead[b-zrcxbeuafl] {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Catalog Navigation */
.catalog-nav[b-zrcxbeuafl] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.catalog-nav-item[b-zrcxbeuafl] {
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.catalog-nav-item:hover[b-zrcxbeuafl] {
    background-color: #e9ecef;
    color: #212529;
    text-decoration: none;
}

/* Component Categories */
.component-category[b-zrcxbeuafl] {
    margin-bottom: 3rem;
}

.component-category h2[b-zrcxbeuafl] {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    color: #333;
}

/* Component Cards */
.component-card[b-zrcxbeuafl] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.component-card h3[b-zrcxbeuafl] {
    color: #343a40;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.component-card p[b-zrcxbeuafl] {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.component-preview[b-zrcxbeuafl] {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

/* Component Info */
.component-info h4[b-zrcxbeuafl] {
    color: #495057;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.code-example[b-zrcxbeuafl] {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

.property-list[b-zrcxbeuafl] {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.property-name[b-zrcxbeuafl] {
    font-weight: 600;
    color: #495057;
}

.property-type[b-zrcxbeuafl] {
    color: #6c757d;
    font-family: 'Courier New', Courier, monospace;
    background-color: #f8f9fa;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .component-preview[b-zrcxbeuafl] {
        padding: 1rem;
    }

    .component-card[b-zrcxbeuafl] {
        padding: 1rem;
    }
}
/* /Pages/Sandbox/Sandbox.razor.rz.scp.css */
h1[b-vxaxqd131i] {
    margin-bottom: 0.5rem;
    color: #333;
}

.lead[b-vxaxqd131i] {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

h3[b-vxaxqd131i] {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #495057;
}

.demo-box[b-vxaxqd131i] {
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: auto;
}

.demo-box.dark-theme[b-vxaxqd131i] {
    background-color: #343a40;
    color: white;
}

.demo-box.bordered[b-vxaxqd131i] {
    border: 1px solid #dee2e6;
}

/* Demo box for dropdown menu */
.demo-box .dropdown-menu[b-vxaxqd131i] {
    position: static;
    display: block;
    width: 100%;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Controls styling */
.btn-sm[b-vxaxqd131i] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.control-group[b-vxaxqd131i] {
    margin-bottom: 1rem;
}

.control-group label[b-vxaxqd131i] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
/* /Pages/User/Settings.razor.rz.scp.css */
.settings-container[b-sln0c5srvf] {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

.settings-header[b-sln0c5srvf] {
margin-bottom: 30px;
}

.settings-header h1[b-sln0c5srvf] {
color: var(--primary-color);
margin-bottom: 10px;
}

.settings-header p[b-sln0c5srvf] {
color: var(--text-secondary);
margin: 0;
}

.settings-content[b-sln0c5srvf] {
display: flex;
flex-direction: column;
gap: 30px;
}

.settings-section[b-sln0c5srvf] {
background: var(--surface-color);
border-radius: 12px;
padding: 24px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-header[b-sln0c5srvf] {
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid var(--border-color);
}

.section-header h2[b-sln0c5srvf] {
color: var(--text-primary);
margin-bottom: 5px;
display: flex;
align-items: center;
gap: 10px;
}

.section-header h2 i[b-sln0c5srvf] {
color: var(--primary-color);
}

.section-header p[b-sln0c5srvf] {
color: var(--text-secondary);
margin: 0;
font-size: 0.9em;
}

.settings-grid[b-sln0c5srvf] {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}

.setting-item[b-sln0c5srvf] {
display: flex;
flex-direction: column;
gap: 8px;
}

.setting-item label[b-sln0c5srvf] {
font-weight: 500;
color: var(--text-primary);
}

.setting-item select[b-sln0c5srvf],
.setting-item input[type="text"][b-sln0c5srvf] {
padding: 10px 12px;
border: 1px solid var(--border-color);
border-radius: 8px;
background: var(--input-bg);
color: var(--text-primary);
font-size: 14px;
}

.setting-item select:focus[b-sln0c5srvf],
.setting-item input[type="text"]:focus[b-sln0c5srvf] {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.format-preview[b-sln0c5srvf] {
color: var(--text-secondary);
font-size: 0.8em;
font-style: italic;
}

/* Toggle Switch Styles */
.toggle-item[b-sln0c5srvf] {
flex-direction: row;
align-items: center;
justify-content: space-between;
position: relative;
}

.toggle-item input[type="checkbox"][b-sln0c5srvf] {
display: none;
}

.toggle-slider[b-sln0c5srvf] {
width: 50px;
height: 26px;
background: var(--border-color);
border-radius: 13px;
position: relative;
cursor: pointer;
transition: all 0.3s ease;
}

.toggle-slider[b-sln0c5srvf]::before {
content: '';
position: absolute;
width: 20px;
height: 20px;
background: white;
border-radius: 50%;
top: 3px;
left: 3px;
transition: all 0.3s ease;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-item input[type="checkbox"]:checked + .toggle-slider[b-sln0c5srvf] {
background: var(--primary-color);
}

.toggle-item input[type="checkbox"]:checked + .toggle-slider[b-sln0c5srvf]::before {
transform: translateX(24px);
}

/* Action Items */
.action-item[b-sln0c5srvf] {
flex-direction: row;
align-items: center;
justify-content: space-between;
}

.action-item.danger label[b-sln0c5srvf] {
color: var(--danger-color);
}

.btn[b-sln0c5srvf] {
padding: 10px 20px;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.2s ease;
}

.btn-primary[b-sln0c5srvf] {
background: var(--primary-color);
color: white;
}

.btn-primary:hover[b-sln0c5srvf] {
background: var(--primary-hover);
}

.btn-outline[b-sln0c5srvf] {
background: transparent;
border: 1px solid var(--border-color);
color: var(--text-primary);
}

.btn-outline:hover[b-sln0c5srvf] {
background: var(--surface-hover);
}

.btn-danger[b-sln0c5srvf] {
background: var(--danger-color);
color: white;
}

.btn-danger:hover[b-sln0c5srvf] {
background: var(--danger-hover);
}

.btn:disabled[b-sln0c5srvf] {
opacity: 0.6;
cursor: not-allowed;
}

/* Settings Footer */
.settings-footer[b-sln0c5srvf] {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid var(--border-color);
display: flex;
align-items: center;
gap: 20px;
}

.save-message[b-sln0c5srvf] {
padding: 10px 15px;
border-radius: 8px;
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
animation: slideIn-b-sln0c5srvf 0.3s ease;
}

.save-message.success[b-sln0c5srvf] {
background: var(--success-bg);
color: var(--success-color);
border: 1px solid var(--success-border);
}

@keyframes slideIn-b-sln0c5srvf {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Responsive Design */
@media (max-width: 768px) {
.settings-container[b-sln0c5srvf] {
padding: 15px;
}

.settings-grid[b-sln0c5srvf] {
grid-template-columns: 1fr;
}

.settings-section[b-sln0c5srvf] {
padding: 20px;
}

.settings-footer[b-sln0c5srvf] {
flex-direction: column;
align-items: stretch;
}

.settings-footer .btn[b-sln0c5srvf] {
width: 100%;
justify-content: center;
}
}

/* Dark Theme Overrides */
@media (prefers-color-scheme: dark) {
.settings-section[b-sln0c5srvf] {
background: var(--surface-dark);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.toggle-slider[b-sln0c5srvf]::before {
background: var(--surface-color);
}
}
