/* /Components/DynamicDropdown.razor.rz.scp.css */
.dropdown-field[b-v1zv2d4cbv] {
    border: 1px solid #007bff;
    font-weight: 500;
}

.input-field[b-v1zv2d4cbv] {
    background-color: #fff;
}
/* /Components/DynamicTable.razor.rz.scp.css */
/* site.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

.btn-pagination[b-2priangbzx] {
    @apply px-3 py-1 border text-sm rounded hover:bg-blue-100 disabled:opacity-50;
}
/* /Components/NavMenu.razor.rz.scp.css */
/* ==========================================
   SIDEBAR
========================================== */

.sidebar[b-t358u4n9df] {
    background: #ffffff;
    border-right: 1px solid #e9ebec;
    box-shadow: 0 0 20px rgba(0,0,0,.05);
}

/* ==========================================
   HEADER / LOGO AREA
========================================== */

.top-row.navbar[b-t358u4n9df] {
    background: #ffffff;
    border-bottom: 1px solid #e9ebec;
    height: 56px;
    padding: 0 12px;
}

.navbar-brand[b-t358u4n9df] {
    color: #212529 !important;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}

/* ==========================================
   HAMBURGER BUTTON
========================================== */

.navbar-toggler[b-t358u4n9df] {
    background: #f3f3f9;
    border: 1px solid #e9ebec;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: none;
}

    .navbar-toggler:hover[b-t358u4n9df] {
        background: #e9ecef;
    }

    .navbar-toggler:focus[b-t358u4n9df] {
        box-shadow: none;
    }

/* ==========================================
   MENU SCROLL
========================================== */

.nav-scrollable[b-t358u4n9df] {
    height: calc(100vh - 70px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 0px;
}

    .nav-scrollable[b-t358u4n9df]::-webkit-scrollbar {
        width: 6px;
    }

    .nav-scrollable[b-t358u4n9df]::-webkit-scrollbar-thumb {
        background: #d6dae1;
        border-radius: 10px;
    }

/* ==========================================
   MENU ITEMS
========================================== */

.nav-item[b-t358u4n9df] {
    padding-bottom: 0;
    font-size: 15px;
}

    .nav-item:first-of-type[b-t358u4n9df] {
        padding-top: 0;
    }

    .nav-item:last-of-type[b-t358u4n9df] {
        padding-bottom: 10px;
    }

    .nav-item[b-t358u4n9df]  a {
        color: #6c757d;
        border-radius: 8px;
        min-height: 46px;
        display: flex;
        align-items: center;
        padding: 0px;
        text-decoration: none;
        transition: all .25s ease;
        font-weight: 500;
    }

        /* Hover */

        .nav-item[b-t358u4n9df]  a:hover {
            color: #405189;
        }

        /* Active */

        .nav-item[b-t358u4n9df]  a.active {
            color: #405189;
            font-weight: 600;
        }

/* ==========================================
   ICONS
========================================== */

.oi[b-t358u4n9df] {
    width: 24px;
    font-size: 15px;
    margin-right: 12px;
    color: #878a99;
    vertical-align: middle;
}

.nav-item[b-t358u4n9df]  a.active .oi {
    color: #405189;
}

.nav-item[b-t358u4n9df]  a:hover .oi {
    color: #405189;
}

/* ==========================================
   DESKTOP
========================================== */

@media (min-width: 641px) {

    .navbar-toggler[b-t358u4n9df] {
        display: none;
    }

    .collapse[b-t358u4n9df] {
        display: block;
    }

    .sidebar[b-t358u4n9df] {
        width: 280px;
        min-width: 280px;
    }

    .nav-scrollable[b-t358u4n9df] {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 640px) {

    .top-row.navbar[b-t358u4n9df] {
        height: 60px;
    }

    .navbar-brand[b-t358u4n9df] {
        font-size: 1rem;
    }

    .nav-scrollable[b-t358u4n9df] {
        height: calc(100vh - 60px);
    }
}
/* /Pages/ProductForm.razor.rz.scp.css */
/* General page styling */
.container[b-kwmj10mh6m] {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.page-header[b-kwmj10mh6m] {
    text-align: center;
    margin-bottom: 20px;
}

    .page-header h1[b-kwmj10mh6m] {
        font-size: 2.5rem;
        color: #333;
        font-weight: 700;
    }

    .page-header p[b-kwmj10mh6m] {
        color: #666;
        font-size: 1rem;
        margin-top: 5px;
    }

/* Table Styling */
table[b-kwmj10mh6m] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th[b-kwmj10mh6m], td[b-kwmj10mh6m] {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th[b-kwmj10mh6m] {
    background-color: #f8f9fa;
    font-weight: 600;
}

td[b-kwmj10mh6m] {
    font-size: 0.875rem;
    color: #444;
}

/* Table Row Hover */
tbody tr:hover[b-kwmj10mh6m] {
    background-color: #f1f1f1;
}

/* Pagination Buttons */
.btn-pagination[b-kwmj10mh6m] {
    padding: 6px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.3s;
}

    .btn-pagination:hover[b-kwmj10mh6m] {
        background-color: #0056b3;
    }

    .btn-pagination:disabled[b-kwmj10mh6m] {
        background-color: #ccc;
        cursor: not-allowed;
    }

.pagination-container[b-kwmj10mh6m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

    .pagination-container .page-info[b-kwmj10mh6m] {
        color: #666;
        font-size: 0.875rem;
    }
/* /Pages/SmsLogList.razor.rz.scp.css */
/* SmsLogList.razor.css – Blazor CSS isolation will scope these to just this page */
.table[b-1u4jqz8axn] {
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

th[b-1u4jqz8axn] {
    background: #f8f9f9 !important;
    text-align: center;
    padding: 0.6rem;
    white-space: nowrap;
}

td[b-1u4jqz8axn] {
    padding: 0.5rem;
    vertical-align: top;
}

    /* truncate the 3rd (Message) and 6th (Response) columns */
    td:nth-child(3)[b-1u4jqz8axn],
    td:nth-child(6)[b-1u4jqz8axn] {
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

/* gentle zebra striping */
.table-striped tbody tr:nth-of-type(odd)[b-1u4jqz8axn] {
    background-color: #fafafa;
}

/* small status‐code badges if the table renders them */
.badge[b-1u4jqz8axn] {
    font-size: 0.75rem;
    padding: 0.25em 0.5em;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-uq92z20n0x] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-uq92z20n0x] {
    flex: 1;
}

.sidebar[b-uq92z20n0x] {
    background: #ffffff;
    border-right: 1px solid #e9ebec;
    box-shadow: 0 0 20px rgba(0,0,0,.05);
}

.top-row[b-uq92z20n0x] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
    z-index: 9999 !important;
}
    .top-row[b-uq92z20n0x]  a, .top-row .btn-link[b-uq92z20n0x] {
        white-space: nowrap;
        margin-left: 0rem;
    }
    .top-row[b-uq92z20n0x]  a {
        font-size: 0.85rem;
        padding: .25rem 0.6rem;
    }
    .top-row a:first-child[b-uq92z20n0x] {
        overflow: hidden;
        text-overflow: ellipsis;
    }
.menu-toggle[b-uq92z20n0x] {
    z-index: 9999;
    border: none;
    background: none;
    color: rgb(73, 80, 87);
    width: 30px;
    height: 35px;
    border-radius: 8px;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}

    .menu-toggle:hover[b-uq92z20n0x] {
        background: #f8f9fa;
        color: #405189;
        border-color: #405189;
    }

    .menu-toggle:focus[b-uq92z20n0x] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(64,81,137,.15);
    }
.sidebar.hide[b-uq92z20n0x] {
    width: 0;
    min-width: 0;
}
.rightside[b-uq92z20n0x] {
    flex: 1;
    transition: all .3s ease;
}

    .rightside.full-width[b-uq92z20n0x] {
        width: 100%;
    }
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
    .btnrighthead .form-control[b-uq92z20n0x] {
        max-width: 220px;
    }
}
    @media (max-width: 640.98px) {
        .top-row:not(.auth)[b-uq92z20n0x] {
            display: none;
        }

        .top-row.auth[b-uq92z20n0x] {
            justify-content: space-between;
        }

        .top-row a[b-uq92z20n0x], .top-row .btn-link[b-uq92z20n0x] {
            margin-left: 0;
        }
    }

    @media (min-width: 641px) {
        .page[b-uq92z20n0x] {
            flex-direction: row;
        }

        .sidebar[b-uq92z20n0x] {
            width: 250px;
            height: 100vh;
            position: sticky;
            top: 0;
        }

        .top-row[b-uq92z20n0x] {
            position: sticky;
            top: 0;
            z-index: 9999 !important;
        }

        .top-row[b-uq92z20n0x], article[b-uq92z20n0x] {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }
    }
