* {
    margin: 0;
    padding: 0;
}

.mainContainer {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.anchorClass {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.header {
    display: flex;
    width: 100%;
    /* height: 8%; */
    /* background-color: rgb(3 176 233) */
    background-color: #0e2238;
    color: white;
    position: fixed;
    top: 0;
    z-index: 99;
}

.headerOne {
    width: 10%;
    text-align: center;
    font-weight: 600;
}

.headerTwo {
    width: 95%;
    text-align: center;
    font-weight: 600;
}

.headerThree {
    width: 5%;
    display: flex;
    justify-content: center;

}

.headerThree a {
    color: white;

}

.navAndContent {
    width: 100%;
    height: 92%;
    display: flex;
    justify-content: center;
    align-items: start;
}

.navContainer {
    width: 10%;
    height: 100%;
}

.navBox {
    /* margin: 10px; */
    /* height: 10%; */
    padding: 10px 2px;
}

.navicon {
    width: 20px;
}

.navLabel {
    text-align: center;
}

.selected {
    background: #f0ece2;
}

.contentContainer {
    width: 90%;
    height: 100%;
    padding: 2vmax;
    overflow-y: scroll;
    scroll-behavior: smooth;
    gap: 10px;
}

/* Dashboard Content Csss */
.dashboard-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 2vmax; */
}

.stats {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 12px 24px rgba(0, 0, 0, 0.25);
}

.stat-header {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-count {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.stat-title {
    font-size: 18px;
    font-weight: 500;
    color: #f0f0f0;
    margin-top: 8px;
}

.stat-footer {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
}

.stat-more-info {
    font-size: 16px;
    cursor: pointer;
    /* text-decoration: underline; */
    color: #fff;
}

.stat-more-info:hover {
    color: #ddd;
}

.stat-footer svg {
    transition: transform 0.3s ease;
}

.stat-footer:hover svg {
    transform: rotate(90deg);
}


/* end///////////////////// */

/* ==============table design==================== */
.tableContainer {
    padding: 2vmax;

}

.tableTitel {
    margin-bottom: 2vmax;

}

th {
    vertical-align: middle;
}

td {
    text-wrap: nowrap;
}

/* ==============table design==================== */

/* ==============card design==================== */
.cardContainer {
    /* padding: 0.7vmax;
    background-color: #FFF; */
    background-color: #f9f9f9;
    /* Light background color for contrast */
    padding: 15px;
    /* Add padding inside the form */
    margin-bottom: 15px;
    /* Create space between form and table */
    border: 1px solid #ddd;
    /* Soft border for structure */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    /* Add shadow for depth */
    border-radius: 8px;
    /* Rounded corners */
}

.cardTitle {
    margin-bottom: 0.7vmax;

}

/* ==============table design==================== */

/* ==============form design==================== */
.formbutton {
    margin: 15px 0;
    padding: 0 12px;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* gap: 10px; */

}

.formTitle {
    margin-bottom: 2vmax;

}

/* ==============table design==================== */


/* subSideBar===================================>>>>> */
.subSideBar {
    min-width: 10%;
    background-color: white;
    position: absolute;
    top: 8%;
    left: 10%;
    height: 92%;
    /* border: 2px solid; */
}

.subsideBarUl {
    margin-top: 15px;
}

.crossBtn {
    width: 10px;
    /* height: 16px; */
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}


/* /////////////Content Container///////////////////// */
.insideContentContainer {
    min-height: 95%;
    padding: 0px 15px;
    margin-top: 70px;
}

.footer {
    width: 100%;
    padding: 10px 0;
    position: sticky;
    bottom: 0;
    background-color: #FFF
}

/* //////////////////////////////////////////////////////////// */
.bulkUploadContainer {
    display: inline-block;
}

/* .bulkUploadOrContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.bulkUploadOrContainer>div {
    height: 2px;
    flex-basis: 49%;
    background-color: #ced4da;
} */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

h1 {
    font-weight: 600;
    font-size: 1.5rem;
}

body {
    font-family: 'Poppins', sans-serif;
}

.wrapper {
    display: flex;
}

.main {
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    width: 100%;
    /* overflow: hidden; */
    transition: all 0.35s ease-in-out;
    background-color: #fafbfe;
}

#sidebar {
    width: 70px;
    min-width: 70px;
    z-index: 1000;
    transition: all .25s ease-in-out;
    background-color: #0e2238;
    display: flex;
    flex-direction: column;
}

#sidebar.expand {
    width: 260px;
    min-width: 260px;
}

.toggle-btn {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    padding: 1rem 1.5rem;
}

.toggle-btn i {
    font-size: 1.5rem;
    color: #FFF;
}

.sidebar-logo {
    margin: auto 0;
}

.sidebar-logo a {
    color: #FFF;
    font-size: 1.15rem;
    font-weight: 600;
}

#sidebar:not(.expand) .sidebar-logo,
#sidebar:not(.expand) a.sidebar-link span {
    display: none;
}

.sidebar-nav {
    padding: 2rem 0;
    flex: 1 1 auto;
}

a.sidebar-link {
    padding: .625rem 1.625rem;
    color: #FFF;
    display: block;
    font-size: 0.9rem;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.sidebar-link i {
    font-size: 1.1rem;
    margin-right: .75rem;
}

a.sidebar-link:hover {
    background-color: rgba(255, 255, 255, .075);
    border-left: 3px solid #3b7ddd;
}

.sidebar-item {
    position: relative;
}

#Reports {
    max-height: 55vh;
    overflow-y: auto;
}

#sidebar:not(.expand) .sidebar-item .sidebar-dropdown {
    position: absolute;
    top: 0;
    left: 70px;
    background-color: #0e2238;
    padding: 0;
    min-width: 15rem;
    display: none;
}

#sidebar:not(.expand) .sidebar-item:hover .has-dropdown+.sidebar-dropdown {
    display: block;
    max-height: 55vh;
    overflow-y: auto;
    /* width: 100%; */
    opacity: 1;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.disabled {
    pointer-events: none;
    /* opacity: 0.8; */
}

/* styles.css */

.form-check-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-inline>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.form-check-inline>div>label {
    display: flex;
}

.form-check-inline>div>label>input {
    border: 1px solid #ced4da;
}

/* table////////////////////////// */

/* div.dt-container {
    width: 800px;
    margin: 0 auto;
} */

/* /////////////////////////////////////// */

/* modal=============== */
#gallery-modal .modal-img {
    width: 100%;
    height: 80dvh;
}

/* //input//////////////////////////////// */
#id_users,
#id_model,
#id_destination,
#update_modelType_model,
#id_destination_distance,
#id_model_type,
#id_select_transactions,
#id_incharge,
#id_model_average {
    max-height: 30vh;
    overflow-y: auto;
    width: 100%;
}

/* Billed Unbilled//////////////////////////////////////////// */

.card-counter {
    box-shadow: 2px 2px 10px #DADADA;
    margin: 5px;
    padding: 20px 10px;
    background-color: #fff;
    height: 100px;
    border-radius: 5px;
    transition: .3s linear all;
}

.card-counter:hover {
    box-shadow: 4px 4px 20px #DADADA;
    transition: .3s linear all;
}

.card-counter.primary {
    background-color: #007bff;
    color: #FFF;
}

.card-counter.danger {
    background-color: #ef5350;
    color: #FFF;
}

.card-counter.success {
    background-color: #66bb6a;
    color: #FFF;
}

.card-counter.info {
    background-color: #26c6da;
    color: #FFF;
}

.card-counter i {
    font-size: 5em;
    opacity: 0.2;
}

.card-counter .count-numbers {
    position: absolute;
    right: 35px;
    top: 20px;
    font-size: 32px;
    display: block;
}

.card-counter .count-name {
    position: absolute;
    right: 35px;
    top: 72px;
    font-style: italic;
    text-transform: capitalize;
    opacity: 0.5;
    display: block;
    font-size: 18px;
}

.disable-sort {
    padding-right: 8px !important;
}

.disable-sort .dt-column-order {
    display: none;
}

/* ///////////////////////end///////////////////////////////////// */

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* stype muilti choice
   */

.mutltiChoice_style {
    /* Set margin for the parent container */
    margin-top: 10px;
    /* width: 100%; */
}

.mutltiChoice_style label {
    /* font-weight: bold; */
    margin-bottom: 5px;
    display: block;
}

.mutltiChoice_style .d-flex {
    /* Aligns checkboxes and labels inside a flex row */
    flex-wrap: wrap;
}

.mutltiChoice_style input[type="checkbox"] {
    /* Add spacing between checkbox and label */
    margin-right: 10px;
    margin-left: 10px;
    /* transform: scale(1.2); Make the checkboxes slightly larger */
}

.mutltiChoice_style label {
    display: flex;
    align-items: center;
    /* width: 45%; Two columns of checkboxes */
    margin-bottom: 10px;
}

.mutltiChoice_style div {
    margin-right: 15px;
}

/* Optional: Add hover effect for the checkboxes */
.mutltiChoice_style label:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
    /* padding: 5px; */
    transition: background-color 0.3s;
}



/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


.pagination {
    margin-top: 20px;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
}
