* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f5f5f5;
}




.login-bx {
    background-image: url(../images/login-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000000;
    padding: 70px 50px 120px;
    border-radius: 40px;
}

.lgn-bx-main {
    padding: 70px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.lgn-heading {
    margin-bottom: 50px;
    padding-left: 30px;
}

.lgn-heading h3 {
    font-size: 45px;
    color: #fff;
    font-weight: 600;
}

.cs-fields input {
    padding: 25px 16px;
    font-size: 15px;
    border-radius: 8px;
    outline: none;
    box-shadow: none;
}

.cs-fields label {
    color: #fff;
}

.sub-btn {
    display: flex;
    width: 100%;
    padding: 11px 50px;
    justify-content: center;
    align-items: center;
    background-color: #D4AF37;
    border-radius: 100px;
    outline: unset !important;
    border: 1px solid transparent;
    color: #fff;
    cursor: pointer;
}

.text-white {
    color: #fff;
}

.lang-drop {
    right: 0 !important;
    left: unset !important;
}


/* packages */

.mn-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.add-new-cta {
    background-color: #D4AF37;
    padding: 10px 30px;
    display: inline-block;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
}


/* .itineraries-container {
    border: 1px solid rgba(0, 0, 0, .125);
    padding: 25px;
    border-radius: 8px;
} */

.ui-datepicker {
    z-index: 999999 !important;
}


/* Style the calendar icon */

.input-group-text {
    cursor: pointer;
}

.itinerary-item {
    position: relative;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.remove-itinerary {
    margin-bottom: 10px;
}

.ck-editor__editable {
    min-height: 150px;
}

.sbt-dv {
    display: flex;
    gap: 15px;
}


/* Add these styles to ensure proper formatting */

.bootstrap-datetimepicker-widget table td.day {
    font-weight: normal;
    font-size: 13px;
    padding: 4px;
}

.bootstrap-datetimepicker-widget .picker-switch {
    font-size: 14px;
    font-weight: bold;
}

.bootstrap-datetimepicker-widget {
    z-index: 1100 !important;
}


/* Make sure the input text is properly aligned */

.datetimepicker-input {
    text-align: left;
    padding-left: 12px;
}


/* Style for the selected date */

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background-color: #D4AF37;
    color: #fff;
    text-shadow: none;
}

.select2-container .select2-selection--multiple {
    min-height: 38px;
    border: 1px solid #ced4da;
}

/* Dropdown arrow */
.select2-container--default .select2-selection--multiple:before {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 7px;
    top: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.select2-container--default.select2-container--open .select2-selection--multiple:before {
    content: '\f077';
}

/* Selected choice styling */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #D4AF37;
    border: 1px solid #006fe6;
    color: #fff;
    padding: 2px 6px 2px 20px;
    /* Increased left padding to accommodate the cross */
    position: relative;
    /* For absolute positioning of cross */
}

/* Cross (remove) button styling */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    position: absolute;
    left: 5px;
    /* Position on the left */
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0;
    font-weight: bold;
}

/* Hover state for remove button */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
    opacity: 0.8;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: block !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    right: 15px !important;
    display: none !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #D4AF37 !important;
    padding-right: 10px !important;

}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    transform: unset !important;
    color: #fff !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: unset !important;
}

.select2-container .select2-search--inline .select2-search__field {
    vertical-align: -webkit-baseline-middle !important;
}

.select2-container--default .select2-selection--multiple {
    padding-bottom: 10px !important;
    padding-left: 10px;
}

.upload-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.upload-area.drag-over {
    border-color: #D4AF37;
    background-color: #f0f8ff;
}

.preview-area {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.image-preview {
    position: relative;
    margin: 5px;
    width: 100%;
    height: 250px;
}

.image-preview img {
    width: 100%;
    height: 100%;
}

.remove-image {
    position: absolute;
    top: 2px;
    right: 5px;
    background: red;
    color: white;
    cursor: pointer;
    font-size: 14px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.browse-text {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
}

.er-display {
    display: flex;
    flex-direction: column;
}

.er-display #short_description-error,
.er-display #description-error,
.err-mssg {
    order: 2;
}

div#gallery-preview .image-preview {
    width: 100px;
    height: 100px;
}


.table th,
.table td {
    text-align: center;
    vertical-align: middle;
}

.table th {
    background-color: #f8f9fa;
}

.btn {
    margin: 0 2px;
}

.fa-check-circle {
    color: green;
}

.fa-times-circle {
    color: red;
}

.table img {
    display: block;
    margin: 0 auto;
}

/* Entries dropdown styling */
.dataTables_length {
    display: inline-block;
    margin-right: 20px;
}

.dataTables_length label {
    font-weight: normal;
    margin-bottom: 0;
}

.dataTables_length select {
    width: 70px;
    padding: 4px 8px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

/* Button container alignment */
.dt-buttons {
    display: inline-block;
    vertical-align: middle;
}

/* Base button style */


/* Select all button */
.dt-buttons .btn-select {
    background: #D4AF37 !important;
    color: #fff !important;
}

.dt-buttons .btn-select:hover {
    background: #0b5ed7 !important;
}

/* Deselect all button */
.dt-buttons .btn-deselect {
    background: #D4AF37 !important;
    color: #fff !important;
}


/* Delete selected button */
.dt-buttons .btn-delete {
    background: #dc3545 !important;
    color: #fff !important;
}

.dt-buttons .btn-delete:hover {
    background: #bb2d3b !important;
}

/* Disabled state */
.dt-buttons .btn:disabled {
    opacity: 0.65 !important;
    cursor: not-allowed !important;
}

/* Search box styling */
.dataTables_filter {
    float: right;
}

.dataTables_filter input {
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: 5px;
}

/* Selected row style */
table.dataTable tbody tr.selected {
    background-color: #b0bed9 !important;
}

.select-wrapper {
    position: relative;
}

.select-wrapper:after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

.vehicle-thumbnail {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

#featured-preview .image-preview img {
    object-fit: contain;
}

.bookings-card {
    border-top: 3px solid #D4AF37;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.booking-boxes .progress {
    background-color: #e9ecef;
    overflow: hidden;
    border-radius: 10px;
}

.booking-boxes .progress-bar {
    transition: width 0.6s ease;
}

.booking-boxes .text-success {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.booking-boxes .text-success i {
    margin-right: 4px;
}

.card-body {
    padding: 1.25rem;
}

.custom-dialog {
    max-width: 900px !important;
}

.dataTables_scrollHead {
    width: 100% !important;

}

table {
    width: 100% !important;
}

.table .dataTables_scrollHeadInner {
    width: 100% !important;
}

.table-responsive .dataTables_scrollHeadInner {
    width: 100% !important;
}

.bootstrap-datetimepicker-widget {
    z-index: 9999 !important;
}

/* packages */


/* media */

@media only screen and (min-width: 320px) and (max-width: 529px) {
    .lgn-bx-main {
        height: auto;
        padding: 30px 20px;
    }

    .lgn-heading {
        padding-left: 0px;
    }

    .lgn-heading h3 {
        font-size: 30px;
    }

    .text-sm {
        font-size: 15px;
    }

    .login-bx {
        padding: 120px 25px;
    }

}

@media only screen and (min-width: 320px) and (max-width: 991px) {

    .sidebar-collapse .main-sidebar,
    .sidebar-collapse .main-sidebar:before {
        margin-left: -100% !important;
    }

    .main-sidebar,
    .main-sidebar:before {
        margin-left: -100% !important;
    }

    .sidebar-open .main-sidebar {
        margin-left: 0 !important;
    }

    .content-wrapper,
    .main-footer,
    .main-header {
        margin-right: 0 !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 529px) {}

@media only screen and (min-width: 375px) and (max-width: 424px) {}

@media only screen and (min-width: 425px) and (max-width: 529px) {}

@media only screen and (min-width: 530px) and (max-width: 767px) {}

@media only screen and (min-width:768px) and (max-width: 991px) {}

@media only screen and (min-width:992px) and (max-width: 1199px) {}

@media only screen and (min-width:1260px) and (max-width: 1365px) {}

@media only screen and (min-width:1366px) and (max-width: 1439px) {}

@media only screen and (min-width: 1440px) and (max-width: 1599px) {}

@media only screen and (min-width: 1600px) and (max-width: 1900px) {}

@media only screen and (min-width: 1680px) and (max-width: 1919px) {}

@media only screen and (min-width: 2560px) {}


/*  media end*/