/* /Layout/MainLayout.razor.rz.scp.css */
:root[b-0cma9orezh] {
    --primary-color: #2563eb;
    --secondary-color: #4f46e5;
    --text-color: #1f2937;
    --bg-color: rgba(255, 255, 255, 0.95);
    --hover-color: #1d4ed8;
    --gradient: linear-gradient(90deg, #2563eb, #4f46e5);
}

.navmenu[b-0cma9orezh] {
    background: linear-gradient(90deg, #11cb84 0%, #2575FC 100%);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 0.75rem 0; /* Increased padding for better vertical spacing */
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center;
}

.navmenu-content[b-0cma9orezh] {
    max-width: 1280px;
    width: 100%; /* Ensure it takes full width within max-width */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    gap: 1rem; /* Add gap to prevent crowding */
}

.logo-container[b-0cma9orezh] {
    flex-shrink: 0;
    display: flex;
    align-items: center; /* Vertically center logo */
}

.logo[b-0cma9orezh] {
    width: 100px;
    height: 70px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover[b-0cma9orezh] {
    transform: scale(1.1);
    opacity: 0.9;
}

nav ul[b-0cma9orezh] {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

nav ul li[b-0cma9orezh] {
    margin: 0;
}

.btn[b-0cma9orezh] {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn[b-0cma9orezh]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover[b-0cma9orezh]::before {
    left: 100%;
}

.btn:hover[b-0cma9orezh] {
    background: var(--hover-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hamburger-menu[b-0cma9orezh] {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span[b-0cma9orezh] {
    background-color: #ffffff;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.hamburger-menu.active span:nth-child(1)[b-0cma9orezh] {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2)[b-0cma9orezh] {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.active span:nth-child(3)[b-0cma9orezh] {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
    .hamburger-menu[b-0cma9orezh] {
        display: flex;
        margin-left: auto; /* Push hamburger to the right */
    }

    nav[b-0cma9orezh] {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        height: 100vh;
        background: var(--gradient);
        background-color: #2563eb; /* Fallback color */
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        transition: transform 0.4s ease;
        padding-top: 5rem;
    }

    nav.active[b-0cma9orezh] {
        transform: translateX(0);
    }

    .sidebar[b-0cma9orezh] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    nav ul[b-0cma9orezh] {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    nav ul li[b-0cma9orezh] {
        width: 100%;
        text-align: center;
    }

    .btn[b-0cma9orezh] {
        display: block;
        padding: 1.25rem;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.2);
    }

    .logo-container[b-0cma9orezh] {
        margin-right: auto; /* Push logo to the left */
    }
}

@media (max-width: 480px) {
    .logo[b-0cma9orezh] {
        height: 48px;
    }

    .navmenu-content[b-0cma9orezh] {
        padding: 0 1rem; /* Reduced padding for smaller screens */
    }

    nav[b-0cma9orezh] {
        width: 100%;
    }

    .hamburger-menu[b-0cma9orezh] {
        margin-right: 0.5rem; /* Ensure hamburger isn't too close to edge */
    }
}
/* /Pages/NSWDocs/Actions/Nsw_Servo.razor.rz.scp.css */

.container[b-s6wfr1ivxv] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-s6wfr1ivxv] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-s6wfr1ivxv] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-s6wfr1ivxv] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-s6wfr1ivxv],
    .table td[b-s6wfr1ivxv] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-s6wfr1ivxv] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-s6wfr1ivxv] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-s6wfr1ivxv] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-s6wfr1ivxv] {
        font-size: 1rem;
    }
}

/* /Pages/NSWDocs/Displays/Nsw_7SegmentDisplay.razor.rz.scp.css */

.container[b-2bf5dhu984] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-2bf5dhu984] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-2bf5dhu984] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-2bf5dhu984] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-2bf5dhu984],
    .table td[b-2bf5dhu984] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-2bf5dhu984] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-2bf5dhu984] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-2bf5dhu984] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-2bf5dhu984] {
        font-size: 1rem;
    }
}
/* /Pages/NSWDocs/Displays/Nsw_LedMatrix.razor.rz.scp.css */
.container[b-rc6e1onitd] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-rc6e1onitd] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-rc6e1onitd] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-rc6e1onitd] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-rc6e1onitd],
    .table td[b-rc6e1onitd] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-rc6e1onitd] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-rc6e1onitd] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-rc6e1onitd] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-rc6e1onitd] {
        font-size: 1rem;
    }
}

/* /Pages/NSWDocs/Modules/Nsw_4button.razor.rz.scp.css */
.nsw-4button-page[b-fltqfs58we] {
    font-family: 'Arial', sans-serif;
    margin-top: 80px;
}

.hero-section[b-fltqfs58we] {
    padding: 80px 0;
    background: url('images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

    .hero-section[b-fltqfs58we]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .hero-section h1[b-fltqfs58we] {
        font-size: 3.5rem;
        font-weight: bold;
    }

    .hero-section p.lead[b-fltqfs58we] {
        font-size: 1.25rem;
        font-weight: 300;
    }

.features .feature[b-fltqfs58we] {
    padding: 20px;
}

.features .icon[b-fltqfs58we] {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.about-us img[b-fltqfs58we] {
    margin-bottom: 20px;
}

.applications ul[b-fltqfs58we] {
    padding-left: 0;
    list-style: none;
}

.applications li[b-fltqfs58we] {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.applications i[b-fltqfs58we] {
    color: #007bff;
    margin-right: 8px;
}

.setup h5[b-fltqfs58we] {
    font-size: 1.3rem;
    margin-top: 20px;
}

.setup ol[b-fltqfs58we] {
    padding-left: 20px;
}

.setup pre[b-fltqfs58we] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.call-to-action[b-fltqfs58we] {
    background-color: #007bff;
    color: white;
    padding: 2.5rem 1rem;
}

    .call-to-action h2[b-fltqfs58we] {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .call-to-action p[b-fltqfs58we] {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

@media (max-width: 768px) {
    .hero-section[b-fltqfs58we] {
        padding: 50px 0;
    }

        .hero-section h1[b-fltqfs58we] {
            font-size: 2.5rem;
        }

        .hero-section p.lead[b-fltqfs58we] {
            font-size: 1rem;
        }

    .features .icon[b-fltqfs58we] {
        font-size: 2rem;
    }

    .call-to-action h2[b-fltqfs58we] {
        font-size: 1.5rem;
    }

    .call-to-action p[b-fltqfs58we] {
        font-size: 1rem;
    }
}
/* /Pages/NSWDocs/Modules/Nsw_Bloetooth.razor.rz.scp.css */
.container[b-zkc2q1ehb3] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-zkc2q1ehb3] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-zkc2q1ehb3] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-zkc2q1ehb3] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-zkc2q1ehb3],
    .table td[b-zkc2q1ehb3] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-zkc2q1ehb3] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-zkc2q1ehb3] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-zkc2q1ehb3] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-zkc2q1ehb3] {
        font-size: 1rem;
    }
}

/* /Pages/NSWDocs/Modules/Nsw_LineFollower.razor.rz.scp.css */
.container[b-tuvoxbje9g] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-tuvoxbje9g] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-tuvoxbje9g] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-tuvoxbje9g] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-tuvoxbje9g],
    .table td[b-tuvoxbje9g] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-tuvoxbje9g] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-tuvoxbje9g] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-tuvoxbje9g] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-tuvoxbje9g] {
        font-size: 1rem;
    }
}

/* /Pages/NSWDocs/Modules/Nsw_Potentiometer.razor.rz.scp.css */
.container[b-li8ja1xb4p] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-li8ja1xb4p] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-li8ja1xb4p] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-li8ja1xb4p] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-li8ja1xb4p],
    .table td[b-li8ja1xb4p] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-li8ja1xb4p] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-li8ja1xb4p] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-li8ja1xb4p] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-li8ja1xb4p] {
        font-size: 1rem;
    }
}

/* /Pages/NSWDocs/Sensors/Nsw_ColorSensor.razor.rz.scp.css */

.container[b-remjv3jmqe] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-remjv3jmqe] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-remjv3jmqe] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-remjv3jmqe] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-remjv3jmqe],
    .table td[b-remjv3jmqe] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-remjv3jmqe] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-remjv3jmqe] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-remjv3jmqe] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-remjv3jmqe] {
        font-size: 1rem;
    }
}

/* /Pages/NSWDocs/Sensors/Nsw_FlameSensor.razor.rz.scp.css */
.container[b-n9yozjktn3] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-n9yozjktn3] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-n9yozjktn3] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-n9yozjktn3] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-n9yozjktn3],
    .table td[b-n9yozjktn3] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-n9yozjktn3] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-n9yozjktn3] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-n9yozjktn3] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-n9yozjktn3] {
        font-size: 1rem;
    }
}

/* /Pages/NSWDocs/Sensors/Nsw_Gyro.razor.rz.scp.css */
.container[b-wxt9k7f63a] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-wxt9k7f63a] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-wxt9k7f63a] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-wxt9k7f63a] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-wxt9k7f63a],
    .table td[b-wxt9k7f63a] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-wxt9k7f63a] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-wxt9k7f63a] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-wxt9k7f63a] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-wxt9k7f63a] {
        font-size: 1rem;
    }
}
/* /Pages/NSWDocs/Sensors/Nsw_HumitureSensor.razor.rz.scp.css */
.container[b-i4rr1bbhgk] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-i4rr1bbhgk] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-i4rr1bbhgk] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-i4rr1bbhgk] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-i4rr1bbhgk],
    .table td[b-i4rr1bbhgk] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-i4rr1bbhgk] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-i4rr1bbhgk] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-i4rr1bbhgk] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-i4rr1bbhgk] {
        font-size: 1rem;
    }
}

/* /Pages/NSWDocs/Sensors/Nsw_InfraredReceiver.razor.rz.scp.css */
.container[b-840xay4vow] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-840xay4vow] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-840xay4vow] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-840xay4vow] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-840xay4vow],
    .table td[b-840xay4vow] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-840xay4vow] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-840xay4vow] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-840xay4vow] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-840xay4vow] {
        font-size: 1rem;
    }
}

/* /Pages/NSWDocs/Sensors/Nsw_LightSensor.razor.rz.scp.css */
.container[b-rfewuv5hf8] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-rfewuv5hf8] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-rfewuv5hf8] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-rfewuv5hf8] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-rfewuv5hf8],
    .table td[b-rfewuv5hf8] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-rfewuv5hf8] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-rfewuv5hf8] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-rfewuv5hf8] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-rfewuv5hf8] {
        font-size: 1rem;
    }
}

/* /Pages/NSWDocs/Sensors/Nsw_SoundSensor.razor.rz.scp.css */
.container[b-03t9gjofjl] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-03t9gjofjl] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-03t9gjofjl] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-03t9gjofjl] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-03t9gjofjl],
    .table td[b-03t9gjofjl] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-03t9gjofjl] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-03t9gjofjl] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-03t9gjofjl] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-03t9gjofjl] {
        font-size: 1rem;
    }
}

/* /Pages/NSWDocs/Shows/Nsw_RGBLed.razor.rz.scp.css */
.container[b-olqi6lecz2] {
    font-family: 'Arial', sans-serif;
}

.my-5[b-olqi6lecz2] {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

pre[b-olqi6lecz2] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.table[b-olqi6lecz2] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th[b-olqi6lecz2],
    .table td[b-olqi6lecz2] {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th[b-olqi6lecz2] {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody[b-olqi6lecz2] {
        border-top: 2px solid #dee2e6;
    }

@media (max-width: 768px) {
    .hero-section h1[b-olqi6lecz2] {
        font-size: 2.5rem;
    }

    .hero-section p.lead[b-olqi6lecz2] {
        font-size: 1rem;
    }
}

