body {
    font-size: 13px;
}

.nav_menu_container ul li {
    list-style-type: none;
}

/* notify start here */
.notify {
    z-index: 1111111111111;
}

.notify svg {
    /* font-size: 20px; */
    width: 35px;
    height: 35px;
}

.notify .leading-5 {
    font-size: 15px;
}

/* swal toast start here */
.swal-toast {
    min-width: auto !important;
    /* Remove default width */
    width: fit-content !important;
    /* Fit text content */
    padding: 10px 20px !important;
    /* Adjust padding */
    font-size: 14px !important;
    border-radius: 5px !important;
}

.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus {
    box-shadow: unset !important;
    border-bottom: 2px solid red !important;
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: unset !important;
    border-bottom: 2px solid red !important;
}

/* swal toast end here */
.logo_container img {
    height: 50px;
}

.page-heading-container {
    padding-left: 27px;
    padding-right: 27px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
select {
    border-radius: 0px !important;
    border: none !important;
    border-bottom: 1px solid #dee2e6 !important;
    /* border-bottom: 1px solid blue; */
}

.form-control,
textarea.form-control {
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid #dee2e6;
    background-color: transparent;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid blue !important;
    border-radius: 0;
}

/* modal code start */
.activity-logs-modal {
    min-width: 900px;
}

/* modal code end */

ul.dropdown-menu.dropdown-menu-end {
    right: 0;
    left: auto;
}

.fa-angle-left {
    font-size: 24px;
}

#close-supplier-duty-btn .fa-angle-left {
    font-size: inherit;
}

.select2.select2-container {
    width: 100% !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none;
    border-bottom: 1px solid blue;
    background-color: transparent;
}

.select2-container--default .select2-selection--multiple {
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid #dee2e6;
    background-color: transparent;
}

.hover-link {
    cursor: pointer;
}

.hover-link:hover {
    color: rgb(13 110 253) !important;
    border-color: rgb(13 110 253) !important;
}

.come-from-modal.left .modal-dialog,
.come-from-modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 75%;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.come-from-modal.left .modal-content,
.come-from-modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0px;
}

.come-from-modal.left .modal-body,
.come-from-modal.right .modal-body {
    padding: 15px 15px 80px;
}

.come-from-modal.right.fade .modal-dialog {
    right: 0px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.come-from-modal.right.fade.in .modal-dialog {
    right: 0;
}


.select2-container--default .select2-selection--single {
    border: none !important;
    border-bottom: 1px solid #dee2e6 !important;
    border-radius: 0px !important;
    padding: .375rem .75rem !important;
    height: 37px;
    outline: none !important;
}

.select2-container--default .select2-selection--single:focus {
    border-bottom: 1px solid blue !important;
}

.width-200 {
    width: 200px;
}

/* .other-permissions:hover {
    background-color: red;
}

.other-permissions:hover .other-permissions-description {
    background-color: red;
} */

.other-permissions-description {
    /* display: none; */
}

/* ========== duties ========== */
.nav-tabs li a,
.duties-nav-tabs {
    color: #666666;
    box-shadow: inset 0 -1px 0 #ddd;
}

.nav-tabs li a.active,
.nav-tabs li a:hover,
.active .duties-nav-tabs,
.duties-nav-tabs:hover {
    color: #2f84d2;
    box-shadow: inset 0 -2px 0 #2f84d2;
}

/* =========== add booking ============ */
.booking-attachments-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.btn-rmv1 {
    background: red;
    color: white;
    border: none;
    padding: 2px 6px;
    cursor: pointer;
}

.fa-phone {
    font-size: 12px;
}


/* style for data-title  */
[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}

[data-title]:after {
    content: attr(data-title);
    /* Get the value of the data-title attribute */
    position: absolute;
    text-align: center;
    /* top: -30px; */
    top: 100%;
    /* Position the tooltip above the span */
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    /* Tooltip background color */
    color: #fff;
    /* Tooltip text color */
    padding: 5px;
    font-size: 13px;
    border-radius: 3px;
    visibility: hidden;
    /* Initially hidden */
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Smooth transition */
    min-width: 100px;
    /* Max width for tooltip */
    word-wrap: break-word;
    /* Ensure long words break and wrap */
    white-space: normal;
    /* Allow wrapping */
    z-index: 9999;
    /* Ensure the tooltip is on top */
}

[data-title] {
    position: relative;
}

.table-address-column {
    display: inline-block;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.big-checkbox {
    width: 20px;
    height: 20px;
}

.datatable input[type='checkbox'] {
    width: 20px;
    height: 20px;
}

#download-pdf input[type='checkbox'] {
    width: 20px;
    height: 20px;
}

/* invoice page */
.invoice-nav-tabs {
    color: #666666;
    box-shadow: inset 0 -1px 0 #ddd;
}

.invoice-nav-tabs.active,
.invoice-nav-tabs:hover {
    color: #2f84d2;
    box-shadow: inset 0 -2px 0 #2f84d2;
}

#DataTables_Table_0_wrapper .dt-search {
    display: none;
}

.remove-file {
    cursor: pointer;
}

.data-row:hover .booking-status-container span {
    display: none;
}

.data-row .booking-status-container button {
    display: none;
}

.data-row:hover .booking-status-container button {
    display: block;
}

/* Hide the slip normally */
#print-section {
    display: none;
}

/* Print styles */
@media print {
    body * {
        visibility: hidden;
    }

    /* Except the print section and its children */
    #print-section,
    #print-section * {
        visibility: visible;
    }

    #print-section {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .heading {
        text-align: center;
        border-top: 2px solid black;
        border-bottom: 2px solid black;
    }

    table,
    th,
    td {
        border: 1px solid black;
    }

    th,
    td {
        padding: 5px;
        text-align: center;
    }

    /* .print-customer {
        display: none !important;
    }

    body.show-customer .print-customer {
        display: list-item !important;
    } */

    /* Hide all print options by default */
    .print-option-customer,
    .print-option-bookedby,
    .print-option-passenger,
    .print-option-dutytype,
    .print-option-vehgroup,
    .print-option-vehicle,
    .print-option-remarks,
    .print-option-garage-time,
    .print-option-released-km-time,
    .print-option-booking-dates,
    .print-option-letterhead {
        display: none !important;
    }

    /* Show options if body has print-show-* class */
    body.print-show-customer .print-option-customer {
        display: list-item !important;
    }

    body.print-show-bookedby .print-option-bookedby {
        display: list-item !important;
    }

    body.print-show-passenger .print-option-passenger {
        display: list-item !important;
    }

    body.print-show-garage-time .print-option-garage-time {
        display: list-item !important;
    }

    body.print-show-released-km-time .print-option-released-km-time {
        display: list-item !important;
    }

    body.print-show-booking-dates .print-option-booking-dates {
        display: list-item !important;
    }

    body.print-show-letterhead .print-option-letterhead {
        display: list-item !important;
    }

    /* Hide options if body has print-hide-* class */
    body.print-hide-dutytype .print-option-dutytype {
        display: none !important;
    }

    body.print-hide-vehgroup .print-option-vehgroup {
        display: none !important;
    }

    body.print-hide-vehicle .print-option-vehicle {
        display: none !important;
    }

    body.print-hide-remarks .print-option-remarks {
        display: none !important;
    }

    body.print-hide-letterhead .print-option-letterhead {
        display: none !important;
    }

}

/* #print-section {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.heading {
    text-align: center;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

table,
th,
td {
    border: 1px solid black;
} */

/* th,
td {
    padding: 5px;
    text-align: center;
} */