/* /Components/Layout/CaptureTechLayout.razor.rz.scp.css */
/* Scoped styles for CaptureTech Layout - UPDATED with new theme colors */
.app-wrapper[b-ltb1taol8k] {
    background: #f7f9fb;
    position: relative;
}

/* Sidebar - Updated gradient with new primary and dark colors */
.sidebar[b-ltb1taol8k] {
    width: 240px;
    height: 100vh;
    background: linear-gradient(180deg, #00baff 0%, #0064cd 100%);
    color: white;
    display: flex;
    flex-direction: column;
    transition: width 0.25s ease;
    z-index: 1050;
    pointer-events: auto;
    flex-shrink: 0;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
}


    /* Brand */
    .sidebar .brand[b-ltb1taol8k] {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .sidebar .logo[b-ltb1taol8k] {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 8px;
    }

    /* Force brand text white */
    .sidebar .brand-text[b-ltb1taol8k],
    .sidebar .brand-text *[b-ltb1taol8k] {
        color: #ffffff !important;
    }

    /* Nav items - high specificity to override Bootstrap .nav-link styles */
    .sidebar a.nav-link[b-ltb1taol8k],
    .sidebar .nav-link[b-ltb1taol8k],
    .sidebar .nav-link *[b-ltb1taol8k],
    .sidebar .nav-link i[b-ltb1taol8k] {
        color: #ffffff !important;
        text-decoration: none;
    }

        /* Ensure icons explicitly white and inherit properly */
        .sidebar .nav-link i[b-ltb1taol8k] {
            font-size: 1.1rem;
            min-width: 24px;
            text-align: center;
            color: #ffffff !important;
        }

    /* Link container styling */
    .sidebar .nav[b-ltb1taol8k] {
        margin-top: 16px;
    }

    /* Ensure nav-item wrapper doesn't add extra spacing */
    .sidebar .nav-item[b-ltb1taol8k] {
        margin-bottom: 6px;
        width: 100%;
    }

    /* Remove margin from the parent link row when it has a submenu */
    .sidebar .nav-item > .d-flex[b-ltb1taol8k] {
        width: 100%;
        margin-bottom: 0;
    }

    /* Remove margin from nav-links inside the flex row (parent dropdown) */
    .sidebar .nav-item > .d-flex > .nav-link[b-ltb1taol8k] {
        margin-bottom: 0;
    }

    /* Submenu container - remove gap between parent and first child */
    .sidebar .nav-item > .nav.flex-column[b-ltb1taol8k] {
        margin-top: 0;
        padding-top: 0;
    }

    /* Submenu nav-links should have smaller margin */
    .sidebar .nav-item > .nav.flex-column > .nav-link[b-ltb1taol8k] {
        margin-bottom: 2px;
    }

    /* First child in submenu should not have extra top margin */
    .sidebar .nav-item > .nav.flex-column > .nav-link:first-child[b-ltb1taol8k] {
        margin-top: 0;
    }

    /* Last child in submenu should not have extra bottom margin */
    .sidebar .nav-item > .nav.flex-column > .nav-link:last-child[b-ltb1taol8k] {
        margin-bottom: 0;
    }

    .sidebar .nav-item .nav-link.rounded-end[b-ltb1taol8k] {
        padding: 10px 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .sidebar .nav-item > .nav-link[b-ltb1taol8k] {
            padding: 10px 12px;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

    .sidebar .nav-link[b-ltb1taol8k] {
        padding: 10px 12px;
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .sidebar .nav-link:hover[b-ltb1taol8k] {
            background: rgba(255, 255, 255, 0.06);
        }

        /* Active state - using contrast color accent */
        .sidebar .nav-link.active[b-ltb1taol8k] {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: inset 3px 0 0 #f03c5a;
        }

    /* Sidebar footer button: make text & icon white and ensure clickable */
    .sidebar .sidebar-footer[b-ltb1taol8k] {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

        .sidebar .sidebar-footer .btn[b-ltb1taol8k] {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #ffffff !important;
            border-color: rgba(255, 255, 255, 0.25) !important;
            background: transparent;
            cursor: pointer;
            transition: all 0.2s ease;
        }

            .sidebar .sidebar-footer .btn:hover[b-ltb1taol8k] {
                background: rgba(255, 255, 255, 0.1);
                border-color: rgba(255, 255, 255, 0.35) !important;
            }

            .sidebar .sidebar-footer .btn i[b-ltb1taol8k] {
                color: #ffffff !important;
            }

    /* Nav text */
    .sidebar .nav-text[b-ltb1taol8k],
    .sidebar .btn-text[b-ltb1taol8k] {
        color: #ffffff !important;
    }

    /* Collapsed state - narrow width showing only icons */
    .sidebar.collapsed[b-ltb1taol8k] {
        width: 64px;
    }

        .sidebar.collapsed .brand[b-ltb1taol8k] {
            justify-content: center;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

            .sidebar.collapsed .brand .logo[b-ltb1taol8k] {
                margin-right: 0 !important;
                margin-left: 0 !important;
            }

        /* Remove nav container padding when collapsed */
        .sidebar.collapsed .nav[b-ltb1taol8k] {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .sidebar.collapsed .nav-link[b-ltb1taol8k] {
            justify-content: center;
            align-items: center;
            padding: 12px 0;
            text-align: center;
            margin-left: 0;
            margin-right: 0;
        }

            .sidebar.collapsed .nav-link i[b-ltb1taol8k] {
                margin: 0 !important;
                margin-right: 0 !important;
                margin-left: 0 !important;
                font-size: 1.25rem;
                width: 100%;
                text-align: center;
            }

        .sidebar.collapsed .nav-text[b-ltb1taol8k],
        .sidebar.collapsed .btn-text[b-ltb1taol8k] {
            display: none;
        }

        /* Hide submenu items when sidebar is collapsed */
        .sidebar.collapsed .nav-item .ps-3[b-ltb1taol8k] {
            display: none;
        }

        /* Ensure nav-item also centers properly */
        .sidebar.collapsed .nav-item[b-ltb1taol8k] {
            width: 100%;
        }

            .sidebar.collapsed .nav-item > a.nav-link[b-ltb1taol8k] {
                justify-content: center;
                padding-left: 0;
                padding-right: 0;
            }

/* Main area */
.main[b-ltb1taol8k] {
    background: transparent;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 240px;
    transition: margin-left 0.25s ease;
    min-width: 0;
    max-width: calc(100vw - 240px);
    overflow-x: hidden;
}

.sidebar.collapsed ~ .main[b-ltb1taol8k] {
    margin-left: 64px;
    max-width: calc(100vw - 64px);
}

.header[b-ltb1taol8k] {
    height: 64px;
    background: #ffffff;
    border-bottom: 1px solid #e9eef3;
    align-items: center;
    flex-shrink: 0;
}

.search-input[b-ltb1taol8k] {
    max-width: 420px;
}

/* Avatar - Updated with new primary gradient */
.avatar[b-ltb1taol8k] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00baff, #0064cd);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Notifications badge - Using contrast color */
.notifications-badge[b-ltb1taol8k] {
    position: absolute;
    top: 4px;
    right: 2px;
    font-size: 0.625rem;
    padding: 0.25rem 0.35rem;
    border-radius: 999px;
    background-color: #f03c5a !important;
}

/* Content area */
.content[b-ltb1taol8k] {
    background: transparent;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 80px;
    min-width: 0;
    max-width: 100%;
}

/* Footer - Positioned absolutely at bottom, overlapping sidebar */
.footer[b-ltb1taol8k] {
    background: transparent;
    border-top: 1px solid #eef2f6;
    flex-shrink: 0;
    z-index: 1040;
    width: 100%;
}

/* Sidebar footer copyright text - lighter gray */
.sidebar-footer-copyright[b-ltb1taol8k] {
    color: rgba(255, 255, 255, 0.4) !important;
}

.sidebar-footer-copyright small[b-ltb1taol8k] {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Global tooltip icon styling (e.g., info icons) - lighter gray */
.fr-info-tooltip[b-ltb1taol8k] {
    color: rgba(255, 255, 255, 0.75) !important;
    transition: color 0.2s ease;
}

.fr-info-tooltip:hover[b-ltb1taol8k] {
    color: rgba(255, 255, 255, 1) !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .sidebar[b-ltb1taol8k] {
        left: -240px;
    }

        .sidebar.collapsed[b-ltb1taol8k] {
            left: 0;
            width: 64px;
        }

    .main[b-ltb1taol8k] {
        margin-left: 0;
        max-width: 100vw;
    }

    .content[b-ltb1taol8k] {
        padding-bottom: 80px;
    }
}

/* /Components/Pages/AccessDenied.razor.rz.scp.css */
/* Scoped styles for Access Denied page - matching Login page theme */
.access-denied-page[b-fmhl3plhqz] {
    background: linear-gradient(135deg, #00baff 0%, #0064cd 100%);
    padding: 20px;
}

.access-denied-container[b-fmhl3plhqz] {
    width: 100%;
    max-width: 440px;
}

    .access-denied-container .card[b-fmhl3plhqz] {
        border-radius: 16px;
        backdrop-filter: blur(10px);
    }

.logo-circle[b-fmhl3plhqz] {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #ffe3e3 0%, #ffb3b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-circle i[b-fmhl3plhqz] {
        color: #dc3545;
    }

/* Details section */
.details-section[b-fmhl3plhqz] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
}

.detail-item[b-fmhl3plhqz] {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

    .detail-item:last-child[b-fmhl3plhqz] {
        border-bottom: none;
    }

    .detail-item code[b-fmhl3plhqz] {
        background: #e9ecef;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 0.85rem;
    }

/* Alert styling */
.alert-warning[b-fmhl3plhqz] {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #856404;
    border-radius: 8px;
}

    .alert-warning i[b-fmhl3plhqz] {
        color: #ffc107;
    }

/* Primary button with new gradient */
.btn-primary[b-fmhl3plhqz] {
    background: linear-gradient(135deg, #00baff 0%, #0064cd 100%);
    border: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .btn-primary:hover[b-fmhl3plhqz] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 186, 255, 0.4);
        background: linear-gradient(135deg, #0064cd 0%, #00baff 100%);
    }

/* Outline button */
.btn-outline-primary[b-fmhl3plhqz] {
    border-color: #00baff;
    color: #0064cd;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .btn-outline-primary:hover[b-fmhl3plhqz] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 186, 255, 0.15);
        background-color: rgba(0, 186, 255, 0.1);
        border-color: #00baff;
        color: #0064cd;
    }

/* Responsive adjustments */
@media (max-width: 576px) {
    .access-denied-container .card-body[b-fmhl3plhqz] {
        padding: 2rem 1.5rem !important;
    }

    .logo-circle[b-fmhl3plhqz] {
        width: 60px;
        height: 60px;
    }
}
/* /Components/Pages/Analytics/OperatorStatistics.razor.rz.scp.css */
.operator-statistics-container[b-dady2zxo81] {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.operator-statistics-container .card-body .form-control-sm[b-dady2zxo81],
.operator-statistics-container .card-body .form-select-sm[b-dady2zxo81] {
    font-size: 0.8125rem;
}

.operator-statistics-container .table th[b-dady2zxo81] {
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.operator-statistics-container .table td[b-dady2zxo81] {
    vertical-align: middle;
}

.operator-statistics-container .badge[b-dady2zxo81] {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Sticky table header */
.operator-statistics-container .table-responsive[b-dady2zxo81] {
    max-height: 600px;
    overflow: auto;
    display: block;
    width: 100%;
}

.operator-statistics-container .sticky-top[b-dady2zxo81] {
    position: sticky;
    top: 0;
    z-index: 1;
}

/* Sortable column headers */
.operator-statistics-container th.sortable:hover[b-dady2zxo81] {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Filter card compact styling */
.operator-statistics-container .form-label[b-dady2zxo81] {
    font-weight: 500;
}
/* /Components/Pages/Analytics/SiteSurvey.razor.rz.scp.css */
.site-survey-container[b-fnpiye2pts] {
    /* Filter section styling */
}

.site-survey-container .card-body .form-control-sm[b-fnpiye2pts],
.site-survey-container .card-body .form-select-sm[b-fnpiye2pts] {
    font-size: 0.8125rem;
}

.site-survey-container .table th[b-fnpiye2pts] {
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.site-survey-container .table td[b-fnpiye2pts] {
    vertical-align: middle;
}

.site-survey-container .table .progress[b-fnpiye2pts] {
    border-radius: 2px;
}

.site-survey-container .badge[b-fnpiye2pts] {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Sticky table header */
.site-survey-container .table-responsive[b-fnpiye2pts] {
    max-height: 600px;
    overflow-y: auto;
}

.site-survey-container .sticky-top[b-fnpiye2pts] {
    position: sticky;
    top: 0;
    z-index: 1;
}

/* Sortable column headers */
.site-survey-container th.sortable:hover[b-fnpiye2pts] {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Warning row for below threshold */
.site-survey-container .table-warning[b-fnpiye2pts] {
    --bs-table-bg: rgba(255, 193, 7, 0.1);
}

/* Filter card compact styling */
.site-survey-container .form-label[b-fnpiye2pts] {
    font-weight: 500;
}
/* /Components/Pages/Configuration/TabbedConfiguration.razor.rz.scp.css */
/* Custom styling for configuration tabs and buttons using sidebar light blue */

/* Tab pills styling */
.config-tabs .nav-link[b-hchgxatin4] {
    color: #495057;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.config-tabs .nav-link:hover[b-hchgxatin4] {
    color: #00baff;
    background-color: rgba(0, 186, 255, 0.1);
}

.config-tabs .nav-link.active[b-hchgxatin4] {
    color: #fff;
    background: linear-gradient(135deg, #00baff 0%, #0099dd 100%);
    border-color: transparent;
}

/* Save button styling */
[b-hchgxatin4] .btn-save-config {
    color: #fff;
    background: linear-gradient(135deg, #00baff 0%, #0099dd 100%);
    border: none;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

[b-hchgxatin4] .btn-save-config:hover {
    color: #fff;
    background: linear-gradient(135deg, #0099dd 0%, #00baff 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 186, 255, 0.3);
}

[b-hchgxatin4] .btn-save-config:disabled {
    color: #fff;
    background: linear-gradient(135deg, #00baff 0%, #0099dd 100%);
    opacity: 0.65;
    transform: none;
    box-shadow: none;
}

[b-hchgxatin4] .btn-save-config:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 186, 255, 0.25);
}
/* /Components/Pages/Login/ForgotPassword.razor.rz.scp.css */
/* Scoped styles for Forgot Password page - consistent with Login/Signup theme */
.forgot-page[b-4o8z4zlalo] {
    background: linear-gradient(135deg, #00baff 0%, #0064cd 100%);
    padding: 20px;
}

.forgot-container[b-4o8z4zlalo] {
    width: 100%;
    max-width: 440px;
}

    .forgot-container .card[b-4o8z4zlalo] {
        border-radius: 16px;
        backdrop-filter: blur(8px);
    }

.logo-circle[b-4o8z4zlalo] {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #e3f9ff 0%, #b3ecff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-circle i[b-4o8z4zlalo] {
        color: #0064cd;
    }

.form-control:focus[b-4o8z4zlalo] {
    border-color: #00baff;
    box-shadow: 0 0 0 0.18rem rgba(0, 186, 255, 0.12);
}

.btn-primary[b-4o8z4zlalo] {
    background: linear-gradient(135deg, #00baff 0%, #0064cd 100%);
    border: none;
    font-weight: 600;
}

.alert-info[b-4o8z4zlalo] {
    background-color: rgba(0, 186, 255, 0.08);
    border-color: #00baff;
    color: #0064cd;
}

@media (max-width: 576px) {
    .forgot-container .card-body[b-4o8z4zlalo] {
        padding: 2rem 1.25rem !important;
    }

    .logo-circle[b-4o8z4zlalo] {
        width: 60px;
        height: 60px;
    }
}
/* /Components/Pages/Login/Login.razor.rz.scp.css */
/* Scoped styles for Login page - UPDATED with new theme colors */
.login-page[b-mhhpg8uldi] {
    background: linear-gradient(135deg, #00baff 0%, #0064cd 100%);
    padding: 20px;
}

.login-container[b-mhhpg8uldi] {
    width: 100%;
    max-width: 440px;
}

    .login-container .card[b-mhhpg8uldi] {
        border-radius: 16px;
        backdrop-filter: blur(10px);
    }

.logo-circle[b-mhhpg8uldi] {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #e3f9ff 0%, #b3ecff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-circle i[b-mhhpg8uldi] {
        color: #0064cd;
    }

/* Provider buttons */
.provider-btn[b-mhhpg8uldi] {
    padding: 12px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-width: 1.5px;
    border-color: #dee2e6;
}

    .provider-btn:hover[b-mhhpg8uldi] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 186, 255, 0.15);
        border-color: #00baff;
        background-color: rgba(0, 186, 255, 0.05);
    }

    .provider-btn i[b-mhhpg8uldi] {
        font-size: 1.1rem;
    }

/* Divider */
.divider-section[b-mhhpg8uldi] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.divider-line[b-mhhpg8uldi] {
    flex: 1;
    height: 1px;
    background: #dee2e6;
}

.divider-text[b-mhhpg8uldi] {
    padding: 0 8px;
    font-weight: 500;
}

/* Form elements */
.form-control:focus[b-mhhpg8uldi] {
    border-color: #00baff;
    box-shadow: 0 0 0 0.2rem rgba(0, 186, 255, 0.15);
}

.form-check-input:checked[b-mhhpg8uldi] {
    background-color: #00baff;
    border-color: #00baff;
}

.form-check-input:focus[b-mhhpg8uldi] {
    border-color: #00baff;
    box-shadow: 0 0 0 0.2rem rgba(0, 186, 255, 0.15);
}

/* Primary button with new gradient */
.btn-primary[b-mhhpg8uldi] {
    background: linear-gradient(135deg, #00baff 0%, #0064cd 100%);
    border: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .btn-primary:hover[b-mhhpg8uldi] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 186, 255, 0.4);
        background: linear-gradient(135deg, #0064cd 0%, #00baff 100%);
    }

/* Links with new primary color */
a[b-mhhpg8uldi] {
    color: #00baff;
}

    a:hover[b-mhhpg8uldi] {
        color: #0064cd;
    }

/* Alert styling with contrast color */
.alert-info[b-mhhpg8uldi] {
    background-color: rgba(0, 186, 255, 0.1);
    border-color: #00baff;
    color: #0064cd;
}

    .alert-info i[b-mhhpg8uldi] {
        color: #00baff;
    }

/* Responsive adjustments */
@media (max-width: 576px) {
    .login-container .card-body[b-mhhpg8uldi] {
        padding: 2rem 1.5rem !important;
    }

    .logo-circle[b-mhhpg8uldi] {
        width: 60px;
        height: 60px;
    }
}
/* /Components/Pages/Login/Signup.razor.rz.scp.css */
/* Scoped styles for Signup page - consistent with Login theme */
.signup-page[b-gbk62zmnd7] {
    background: linear-gradient(135deg, #00baff 0%, #0064cd 100%);
    padding: 20px;
}

.signup-container[b-gbk62zmnd7] {
    width: 100%;
    max-width: 520px;
}

    .signup-container .card[b-gbk62zmnd7] {
        border-radius: 16px;
        backdrop-filter: blur(8px);
    }

.logo-circle[b-gbk62zmnd7] {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #e3f9ff 0%, #b3ecff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-circle i[b-gbk62zmnd7] {
        color: #0064cd;
    }

/* Provider buttons */
.provider-btn[b-gbk62zmnd7] {
    padding: 12px 16px;
    font-weight: 500;
    transition: all 0.18s ease;
    border-width: 1.5px;
    border-color: #dee2e6;
}

    .provider-btn:hover[b-gbk62zmnd7] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 186, 255, 0.12);
        border-color: #00baff;
        background-color: rgba(0, 186, 255, 0.04);
    }

/* Form elements */
.form-control:focus[b-gbk62zmnd7] {
    border-color: #00baff;
    box-shadow: 0 0 0 0.18rem rgba(0, 186, 255, 0.12);
}

.form-check-input:checked[b-gbk62zmnd7] {
    background-color: #00baff;
    border-color: #00baff;
}

.btn-primary[b-gbk62zmnd7] {
    background: linear-gradient(135deg, #00baff 0%, #0064cd 100%);
    border: none;
    font-weight: 600;
}

    .btn-primary:hover[b-gbk62zmnd7] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 186, 255, 0.28);
    }

/* Small responsive tweaks */
@media (max-width: 576px) {
    .signup-container .card-body[b-gbk62zmnd7] {
        padding: 2rem 1.25rem !important;
    }

    .logo-circle[b-gbk62zmnd7] {
        width: 60px;
        height: 60px;
    }
}
/* /Components/Pages/Login/TermsAcceptance.razor.rz.scp.css */
/* Scoped styles for Terms Acceptance page - consistent with Login theme */
.terms-page[b-sfynefq88a] {
    background: linear-gradient(135deg, #00baff 0%, #0064cd 100%);
    padding: 20px;
}

.terms-container[b-sfynefq88a] {
    width: 100%;
    max-width: 600px;
}

    .terms-container .card[b-sfynefq88a] {
        border-radius: 16px;
        backdrop-filter: blur(10px);
    }

.logo-circle[b-sfynefq88a] {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #e3f9ff 0%, #b3ecff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-circle i[b-sfynefq88a] {
        color: #0064cd;
    }

/* Terms content scrollable area */
.terms-content-wrapper[b-sfynefq88a] {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
}

.terms-content[b-sfynefq88a] {
    max-height: 350px;
    overflow-y: auto;
    padding: 20px;
    background-color: #fafbfc;
    scroll-behavior: smooth;
}

    .terms-content[b-sfynefq88a]::-webkit-scrollbar {
        width: 8px;
    }

    .terms-content[b-sfynefq88a]::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .terms-content[b-sfynefq88a]::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #00baff 0%, #0064cd 100%);
        border-radius: 4px;
    }

    .terms-content[b-sfynefq88a]::-webkit-scrollbar-thumb:hover {
        background: #0064cd;
    }

    .terms-content h5[b-sfynefq88a] {
        color: #0064cd;
        font-weight: 700;
    }

    .terms-content h6[b-sfynefq88a] {
        color: #333;
        font-weight: 600;
    }

    .terms-content p[b-sfynefq88a] {
        color: #555;
        line-height: 1.6;
        font-size: 0.9rem;
    }

    .terms-content ul[b-sfynefq88a] {
        color: #555;
        font-size: 0.9rem;
        padding-left: 20px;
    }

    .terms-content li[b-sfynefq88a] {
        margin-bottom: 6px;
    }

    .terms-content a[b-sfynefq88a] {
        color: #00baff;
        text-decoration: none;
    }

    .terms-content a:hover[b-sfynefq88a] {
        color: #0064cd;
        text-decoration: underline;
    }

/* End of terms indicator */
.end-of-terms[b-sfynefq88a] {
    border-top: 2px dashed #28a745;
    margin-top: 20px;
    background: linear-gradient(to bottom, transparent, rgba(40, 167, 69, 0.05));
}

/* Bounce animation for scroll indicator */
.bounce-animation[b-sfynefq88a] {
    animation: bounce-b-sfynefq88a 1s infinite;
}

@keyframes bounce-b-sfynefq88a {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* Form elements */
.form-check-input:checked[b-sfynefq88a] {
    background-color: #00baff;
    border-color: #00baff;
}

.form-check-input:focus[b-sfynefq88a] {
    border-color: #00baff;
    box-shadow: 0 0 0 0.2rem rgba(0, 186, 255, 0.15);
}

.form-check-input:disabled[b-sfynefq88a] {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-check-label.text-muted[b-sfynefq88a] {
    opacity: 0.6;
}

/* Primary button with gradient */
.btn-primary[b-sfynefq88a] {
    background: linear-gradient(135deg, #00baff 0%, #0064cd 100%);
    border: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .btn-primary:hover:not(:disabled)[b-sfynefq88a] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 186, 255, 0.4);
        background: linear-gradient(135deg, #0064cd 0%, #00baff 100%);
    }

    .btn-primary:disabled[b-sfynefq88a] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* Secondary button */
.btn-outline-secondary[b-sfynefq88a] {
    border-color: #6c757d;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .btn-outline-secondary:hover:not(:disabled)[b-sfynefq88a] {
        background-color: #6c757d;
        color: white;
        transform: translateY(-1px);
    }

/* Alert styling */
.alert-warning[b-sfynefq88a] {
    background-color: rgba(255, 193, 7, 0.15);
    border-color: #ffc107;
    color: #856404;
}

.alert-success[b-sfynefq88a] {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #155724;
}

.alert-info[b-sfynefq88a] {
    background-color: rgba(0, 186, 255, 0.1);
    border-color: #00baff;
    color: #0064cd;
}

    .alert-info i[b-sfynefq88a] {
        color: #00baff;
    }

.alert-danger[b-sfynefq88a] {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .terms-container .card-body[b-sfynefq88a] {
        padding: 1.5rem !important;
    }

    .terms-content[b-sfynefq88a] {
        max-height: 280px;
        padding: 15px;
    }

    .logo-circle[b-sfynefq88a] {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .terms-container[b-sfynefq88a] {
        max-width: 95%;
    }
}
/* /Components/Pages/Operations/OperationsDashboard.razor.rz.scp.css */
/* Scoped styles for modal/backdrop and responsive layout */

.device-modal-backdrop[b-x83l6y4fzs] {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
}

.device-modal-card[b-x83l6y4fzs] {
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: auto;
    border-radius: 0.5rem;
}

/* Ensure small screens look good */
@media (max-width: 576px) {
    .device-modal-card[b-x83l6y4fzs] {
        max-width: 95%;
    }
}
/* /Components/Pages/Support/TabbedSupport.razor.rz.scp.css */
/* Custom styling for support tabs using sidebar light blue */

/* Tab pills styling */
.support-tabs .nav-link[b-cmbmhq0bs5] {
    color: #495057;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.support-tabs .nav-link:hover[b-cmbmhq0bs5] {
    color: #00baff;
    background-color: rgba(0, 186, 255, 0.1);
}

.support-tabs .nav-link.active[b-cmbmhq0bs5] {
    color: #fff;
    background: linear-gradient(135deg, #00baff 0%, #0099dd 100%);
    border-color: transparent;
}

/* FAQ Accordion styling */
.accordion-button[b-cmbmhq0bs5] {
    font-weight: 500;
}

.accordion-button:not(.collapsed)[b-cmbmhq0bs5] {
    color: #00baff;
    background-color: rgba(0, 186, 255, 0.05);
}

.accordion-button:focus[b-cmbmhq0bs5] {
    box-shadow: 0 0 0 0.2rem rgba(0, 186, 255, 0.25);
}

/* Download card styling */
.card.bg-light[b-cmbmhq0bs5] {
    border-left: 4px solid #00baff;
}
