.login{
    background-image: url('../img/bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.centered-card {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    width: 100%;
    max-width: 500px;
    padding: 35px !important;
    border-radius: 20px;
    background-color: #ffffff;
}

/* Membership pages need full width cards */
.membership-full-width .card {
    max-width: none !important;
    width: 100% !important;
}

body {
    display: flex;
}

/* Sidebar styles */
.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
}

.sidebar .logo {
    padding: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    background-color: #ffffff;
}

.sidebar .nav-item, .nav-item a{
    color: #10101099;
    text-decoration: none;
    width: 90%;
    padding: 10px 25px 10px 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    font-size: 15px;
}

.sidebar .nav-item:hover {
    background-color: #5E35A70D;
}

.sidebar .open-new:hover {
    background-color: #ffffff !important;
}

.main {
    margin-left: 250px;
    /* Account for sidebar width */
    width: calc(100% - 250px);
}

/* Header bar styles */
.header-bar {
    padding: 15px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
}

.body{
    background-color: #5E35A70D;
}

.active-sidebar{
    background-color: #5E35A70D;
    color: #5E35A7 !important;
    background-image: url('../img/activeMenu.png');
    background-repeat: no-repeat;
    width: 8px;
    height: 48px;
}

.active-sidebar a{
    color: #5E35A7 !important;
}

.open-new{
    background-color: #ffffff;
    color: #5E35A7 !important;
    height: unset !important;
}

.open-new:hover{
    background-color: #ffffff;
}

.user-icon-image{
    margin-left: 30px;
}

.user-icon-image img{
    width: 38px !important;
    height: 38px !important;
    border-radius: 50%;
}

.main-content{
    padding: 50px;
}

.tableInput{
    border: 1px solid #101010BF;
    border-top-right-radius: 10;
    border-bottom-right-radius: 10;
    border-left: none !important;
}

.tableIcon{
    background-color: #ffffff !important;
    border: 1px solid #101010BF;
    border-top-left-radius: 10;
    border-bottom-left-radius: 10;
    border-right: none !important;
}

.dataTableHeading{
    background-color: #ffffff;
    padding: 15px 10px;
    margin-bottom: 20px;
    border-radius: 20px;
}

.dateTableSortBy{
    width: 100px;
    margin-left: 25px;
    margin-top: 4px;
    color: #10101080;
}

.border-bottom-none{
    border-bottom: none !important;
} 

.border-top-none{
    border-top: none !important;
}

.upload-container {
    width: 100%;
    height: 320px;
    /* border: 2px dashed #ced4da; */
    border-radius: 10px;
    background-color: #F7F5FB;
    text-align: center;
    cursor: pointer;
    padding: 20px;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.upload-container:hover {
    background-color: #e9ecef;
}

.upload-container-sm {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    background-color: #F7F5FB;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 5px;
}

.upload-container-sm:hover {
    background-color: #e9ecef;
}

.upload-icon {
    font-size: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.upload-text {
    margin-top: 10px;
    position: absolute;
    top: calc(50% + 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}
.upload-button {
    position: absolute;
    top: calc(50% + 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "OFF";
    color: white;
    font-size: 12px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s;
}

.slider:after {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #5E35A7;
}

input:checked+.vehicleBiodataSlider {
    background-color: #5E35A7;
}

input:checked+.slider:before {
    content: "YES";
}

input:checked+.slider:after {
    transform: translateX(42px);
    /* Adjusted for the increased width */
}

.border_bottom{
    border-bottom: 2px solid #EDEDED;
}

.no-icon .dropdown-toggle::after{
    content: unset !important;
}

.label-card{
    min-width: 250px;
    font-size: 12px;
    border-radius: 5px;
}

.label-cardText{
    font-size: 12px;
    border-radius: 5px;
}

.user-icon-image-big img {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50%;
}

.table-tbody thead tr th{
    font-size: 12px;
    color: #5E35A7 !important;
}

.table-tbody tbody tr td{
    font-size: 12px;
}

.table-image{
    width: 50px;
    height: 20px;
}

/* HISTORY TABLE */
.table-pin span:nth-child(1) {
    font-size: 14px; 
    height: 32px; 
    width: 32px; 
    color: #26d953; 
    border-color: #26d953 !important;
}

.table-pin span:nth-child(2) {
    font-size: 14px; 
    height: 32px; 
    width: 32px; 
    color: #e88a00; 
    border-color: #e88a00 !important;
}

.table-pin span:nth-child(3) {
    font-size: 14px; 
    height: 32px; 
    width: 32px; 
    color: #d92626; 
    border-color: #d92626 !important;
}

.tyreInfoContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none !important;
    padding: 12px 16px !important;
}

.infoText {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: #5E35A7;
}

.info-input, .info-input:focus {
    width: 58px;
    height:44px;
    border-radius: 4px;
    border: 2px solid #10101059 !important;
    border-color: #10101059;
}

.pointer-events-none{
    pointer-events: none;
}

.info-input-lube{
    width: 150px !important;
}

.info-input::-webkit-input-placeholder {
    text-align: center;
    font-size: 14px;
    color: #101010bf;
    opacity: 75%
}

.dateTableView{
    color: #10101080;
    margin: 5px 10px 10px 20px;
}

.dateTableViewIcon{
    font-size: 25px;
    color: #10101099;
    margin-right: 20px;
}

.dateTableViewIconActive {
    background-color: #E7E1F2;
    color: #5E35A7;
    padding: 0px 5px;
    border-radius: 5px;
}

.RVH_wheelAlignment {
    background-color: #C299FF !important;
    text-wrap: nowrap !important;
}

/* BUTTONS STATUS COLORS */
.jobCardStatus {
    text-wrap: no-wrap;
    display: flex;
    flex-wrap: wrap;
    .check, .notPaid {
        background-color: #FF8F2D !important;
    }
    span{
        margin-right: -8px;
    }
    .inventory {
        background-color: #FFEB32 !important;
    }
    .DVI {
        background-color: #C9F940 !important;
    }
    .DVI-SYS {
        color: #FFFFFF;
        background-color: #A532FF !important;
    }
    .review {
        background-color: #D632FF !important;
    }
    .service {
        background-color: #00F1A9 !important;
    }
    .ready, .paid {
        background-color: #48BC00 !important;
    }
    .estimate {
        color: #FFFFFF;
        background-color: #4332FF !important;
    }
    .close {
        color: #FFFFFF;
        background-color: #000AFF !important;
    }
    .QC {
        background-color: #30CDFF !important;
    }
    .clean {
        background-color: #157EF9 !important;
    }
    .pend-payment {
        background-color: #5E35A733;
    }
}

.moreSpace{
    span {
        margin-right: 5px;
    }
}

.jobCardStatus a:hover{
    color: #ffffff !important;
}

/* Vehicle Inventory width */
.inventoryTable th, .inventoryTable td{
    width: 20%;
}

.assgTable td{
    border: 1px solid #C1C0C2;
}

.EstimTable div{
    text-align: center;
    border-left: 1px solid #C1C0C2;
    border-bottom: 1px solid #C1C0C2;
    padding: 5px;
    height: 50px;
}

/* Vehicle Invoice width */
.invoiceTable th, .invoiceTable td{
    width: 11.11%;
}

/* Remove the padding from the accordion button to avoid extra space */
.accordion-button {
    padding-left: 0;
}

.accordion-button::after {
    position: absolute;
    right: 1rem;
}

.inventoryTable tr th:not(:nth-child(1)), .inventoryTable tr td:not(:nth-child(1)){
    text-align: center;
}

.DVI-invoice .accordion-button::after {
    display: none;
}

.invoicecard{
    background-color: #F3F3F3;
    padding: 15px;
}

.cross-out {
    text-decoration: line-through;
}

.cardTableImage{
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0px !important;
    margin-right: 10px;
}

.cardTableImageTop{
    background-color: #101010CC;
    width: 25px;
    color: #ffffff;
    align-items: right;
}

.cardTableImageDown{
    background-color: #101010CC;
    text-align: center;
    width: 100% !important;
    color: #ffffff;
    margin-top: 52px;
}

.cardTableImageAdd{
    font-size: 50px;
    margin-top: 10px;
}

.statusJobfirst{
    width: 150px;
    font-size: 12px !important;
}

.statusJobfirstMo{
    width: 200px;
    font-size: 12px !important;
    padding-left: 5px !important;
}

.activesetting{
    background-color: #E4DDF0;
    color: #5E35A7;
}

.upload-container-stt{
    position: relative;
    text-align: center;
}

.settingImage{
    width: 200px;
    height: 200px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.headingBorder{
    height: 30px;
}

.vehicleImage{
    width: 250px;
    height: 250px;
    border-radius: 5px;
}

.jobMobileHeading{
    background-color: #FFFFFF;
    padding: 10px;
    color: #532F94;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.jobMobileBoady{
    background-color: #FAF5FF;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.jobMobileBoadyImg {
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-left: 12px;
}

.swiper2{
    width: 150px;
}

.wlgbig{
    width: 60%;
}

.wlgsm{
    width: 25%;
}

.info-input-aproval, .info-input-aproval:focus{
    width: 100px;
}

.dropdown-menu-new {
    display: none;
    list-style-type: none;
    padding-left: 20px;
    border-left: 2px solid #707070;
    margin-left: 20px;
}

.submenu-link-new {
    color: #ccc;
    padding: 8px;
    display: block;
}

.submenu-link-new:hover, .submenu-item-new:hover {
    background-color: #F7F5FB;
    color: #5E35A7;
}

.submenu-link-new.active-new {
    color: white;
}

.submenuItemNewActive, .submenuItemNewActive a{
    background-color: #F7F5FB !important;
    color: #5E35A7 !important;
    border-radius: 5px;
}

/* Dropdown open state */
.menu-item-new.dropdown-new.open-new .dropdown-menu-new {
    display: block !important;
} 

.timeTagUser{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
}

@media(min-width:600px) {
    .dispMob{
        display: none;
    }
}

@media(max-width:600px){
    .info-input-lube, .wlgbig, .wlgsm{
        width: 100% !important;
    }
    .tyreInfoContainer{
        display: block;
    }
    .infoText{
        font-size: 12px;
    }
    .dispDesk {
            display: none;
    }
    .accordion-body{
        padding: 5px !important;
    }
    .resLogo {
        width: 30px;
        height: 15px;
        object-fit: unset !important;
    }
    .resTitle{
        font-size: 14px;
        margin-top: 2px;
        font-weight: bolder;
    }
    .headingBorder{
        height: 25px;
        margin-top: 2px;
    }
    .main-content{
        padding: 10px;
    }
    .vehicleImage {
        width: 100%;
        height: 200px;
    }
    .jobCardRes{
        margin-top: 20px;
    }
    .label-cardText {
        font-size: 10px;
    }
    .tableLabelAccd{
        display: none;
    }
}

.item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.item label {
    cursor: pointer;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item input[type="radio"] {
    margin-right: 10px;
}

.item-description {
    flex: 5;
    text-align: left;
    transition: color 0.3s ease;
}

.item-price {
    flex: 1;
    text-align: right;
    font-weight: bold;
}

/* Active color change when checked */
.item input[type="radio"]:checked+.item-description {
    color: #5E35A7;
    /* Active color */
}

.item input[type="radio"]:checked+label {
    color: #5E35A7;
    /* Background change on checked */
}

.staffStart{
    width: 5%;
}
.staffDate{
    width: 10%;
}
.staffName{
    width: 20%;
}
.staffJob{
    width: 15%;
}
.staffMMl{
    width: 15%;
}
.staffRVH{
    width: 25%;
    padding: 0px 10px;
}
.staffEnd{
    width: 10%;
}

.textdarkoth{
    font-size: 14px;
    color: #212529;
}

.cardStatics{
    border: 1px solid #A5A5A5;
    border-radius: 5px;
    width: 250px;
    padding: 10px;
}
.cardStaticsLarge{
    border: 1px solid #A5A5A5;
    border-radius: 5px;
    width: 48%;
    padding: 10px;
    text-align: center;
}

.imgVocher{
    width: 100%;
    height: 250px;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    width: 100%;
}

.tag {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    margin: 3px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
}

.tag i {
    margin-left: 8px;
    cursor: pointer;
}

.tag-input {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 5px;
}

.tag-input::placeholder {
    color: #ccc;
}

.statusLabelCard{
    font-size: 12px !important;
    text-align: center;
    padding: 5px;
    text-wrap: nowrap;
}

.estimatmation{
    width: 100% !important;
    background-color: #fff;
}