.logo {
    line-height: 38px !important;
}

.user-management {
    .card-body {
        border-radius: 15px;
    }

    .blog-tags {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-direction: column;

        .tags-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            width: 55px;
            height: 55px;
            border-radius: 10px;
            flex-shrink: 0;

            i::before {
                width: 30px;
                height: 30px;
                font-size: 30px;
                color: #FF7A3D;
            }
        }

        .tag-details {
            text-align: center;

            h2 {
                color: #fff;
                margin-bottom: 10px;
            }

            p {
                font-size: 20px;
            }

            p:last-child {
                margin-bottom: 0;
                color: #fff;
            }
        }
    }
}

.card .card-header {
    background-color: #fff;
    padding: 16px 24px;
    border-bottom: 1px dashed rgba(106,113,133,.3);
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
    position: relative;

    h4 {
        text-transform: capitalize;
    }
}

h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .6px;
}

.total-user {
    min-width: 95px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    margin-right: 10px;

    h5 {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box !important;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        white-space: normal;
        width: 85px;
        text-align: center;
        font-size: 14px;
    }

    span {
        color: #1F58C7;
        font-size: 20px;
        font-weight: 600;
    }
}

.bg-light-primary {
    background-color: #FFF3ED !important;
    color: #fff;
}

.btn-light1-primary {
    background-color: #FFF3ED !important;
}

.b-r-15 {
    border-radius: 15px !important;
}

.upcoming-box {
    padding: 14px 0;
    text-align: center;

    .upcoming-icon {
        height: 50px;
        width: 50px;
        margin: 0 auto 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    p {
        font-size: 18px;
        font-weight: 600;
    }

    i {
        font-size: 30px;
        color: #FFFFFF;
    }

    a.btn {
        padding: 5px 10px;
        border-radius: 5px;
    }
}

.dropdown-content {
    background: #F6F7FB;
    padding: 10px;
    border: 2px solid #EEEEEE;

    .container {
        max-width: 100%;
        width: 100%;
        margin: auto;
    }
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #CCCCCC;
    }
    .tabs {
        display: flex;
        gap: 10px;
    }
    .tabs button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px 20px;
        font-size: 16px;
        border-bottom: 2px solid transparent;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .tabs button.active {
        background: #E5651F;
        color: #FFF;
    }
    .comment-box {
        padding: 15px;
        border-radius: 5px;
    }
    textarea {
        width: 100%;
        height: 100px;
        padding: 10px;
    }
    .empty-state {
        text-align: center;
        margin-top: 30px;
        color: #777;
    }

    .list-group {
        .empty-state {
            margin-top: 0;
            padding: 0;
        }

        .list-group-item:first-child {
            margin-top: 10px;
        }
    }

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

    .upload-area.dragover {
        border-color: #0d6efd;
        background: #e9ecef;
    }

    .upload-content {
        color: #6c757d;
    }

    .upload-content i {
        color: #0d6efd;
    }

    .upload-progress {
        display: none;
        margin-top: 10px;
    }

    .upload-progress .progress {
        height: 5px;
        margin-bottom: 5px;
    }

    .upload-progress .progress-text {
        font-size: 12px;
        color: #6c757d;
    }

    .list-group-item {
        border: 1px solid rgba(0,0,0,.125);
        margin-bottom: 0.5rem;
        border-radius: 0.25rem;
    }

    .list-group-item h5 {
        margin: 0;
        color: #495057;
    }

    .list-group-item small {
        color: #6c757d;
    }

    .comment-content {
        color: #212529;

        p {
            margin-bottom: 0;
        }
    }

    .empty-state {
        text-align: center;
        padding: 2rem;
        color: #6c757d;
    }

    .empty-state p {
        margin: 0.5rem 0;
    }

    .empty-state p:first-child {
        font-size: 1.1rem;
        color: #495057;
    }

    .tabs_comments {
        display: inline-block;
        background: grey;
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        text-align: center;
        font-size: 12px;
        line-height: 18px;
        margin-left: 5px;
    }
}

.ck-body-wrapper {
	display: none !important;
}

.gantt-red g rect {
    fill: red !important;
}

.form-switch .form-check-input {
    width: 2.5em;
    height: 1.25em;
    background-color: #e9ecef;
    border: none;
    cursor: pointer;
}
.form-switch .form-check-input:checked {
    background-color: #FF7A3D;
}
.form-switch-label {
    font-size: 0.85rem;
    margin-left: 10px;
    color: #333;
}

.fieldset-container {
    position: relative;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 0 12px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.fieldset-label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #fff;
    padding: 0 5px;
    font-size: 0.75rem;
    color: #666;
}
.fieldset-container input, .fieldset-container textarea, .fieldset-container select {
    border: none;
    padding: 12px 0;
    width: 100%;
    outline: none;
    background: transparent;
    font-size: 0.9rem;
}
.fieldset-container textarea {
    min-height: 100px;
}

.pagination-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.pagination .page-link {
    color: #495057;
    border: none;
    padding: 0 10px;
    min-width: 32px;
    height: 38px;
    line-height: 38px;
    background-color: #f8f9fa;
    border-radius: 8px !important;
    margin: 0 5px;
    display: inline-block;
    text-align: center;
}
.pagination .page-item.active .page-link {
    background-color: #FF7A3D;
    color: white;
}
.pagination .page-item.disabled .page-link {
    opacity: 0.6;
}
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.pagination-container-amounts {
    color: #FFB088;
}
.custom-table th {
    font-weight: bold;
    font-size: 0.85rem;
    border-top: none;
    border-bottom: 1px solid #eee;
    padding: 15px 10px;
    color: #333;
}
.custom-table td {
    vertical-align: middle;
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
    color: #555;
}
.custom-table tr:hover {
    background-color: #000;
    cursor: pointer;
}
.control-panel .btn-icon {
    color: #6c757d;
    font-size: 1.1rem;
    padding: 0.4rem;
    background: none;
    border: none;
}
.cp-search-bar .input-group {
    max-width: 400px;
}
.cp-search-bar .input-group-text {
    border-radius: 6px 0 0 6px;
}
.cp-search-bar .form-control {
    border-radius: 0;
}
.cp-search-bar .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}
.cp-search-bar .cp-search-close {
    border-radius: 0 6px 6px 0;
}
.cp-filter-panel {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 16px;
}
.cp-filter-panel .form-select-sm {
    min-width: 150px;
    font-size: 0.82rem;
}
.section-title {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.form-switch .form-check-input {
    width: 2.5em;
    height: 1.25em;
    margin-right: 10px;
}

.form-check-input:checked {
    background-color: #FF7A3D;
    border-color: #FF7A3D;
}

.wizard-stepper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
    position: relative;
    gap: 150px;
}
.wizard-stepper::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 0;
    width: 200px;
    height: 1px;
    background-color: #ccc;
    z-index: 1;
}

.wizard-stepper-customer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.wizard-stepper-customer::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #eee;
    z-index: 1;
}
.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
}
.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: bold;
    font-size: 0.8rem;
}
.step-title {
    font-size: 0.75rem;
    color: #333;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.step-item.active .step-number {
    background-color: #333;
}
.step-item.completed .step-number {
    background-color: #333;
}
.step-item.completed .step-number::after {
    content: "\2713";
    font-size: 0.8rem;
}
.step-item.completed .step-number {
    color: white;
}
.step-item.completed .step-number {
    font-size: 0;
}
.step-item.completed .step-number::before {
    content: "\2713";
    font-size: 1rem;
}
.filter-sidebar .card-header {
    background-color: transparent;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}
.filter-sidebar .btn-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}
.filter-sidebar .btn-link:focus {
    box-shadow: none;
}
.filter-sidebar .card {
    margin-bottom: 5px;
    border: 1px solid #eee;
    border-radius: 4px;
}
.dashed-container {
    border: 2px dashed #ccc;
    border-radius: 4px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}
.dashed-container p {
    font-weight: bold;
    color: #333;
    max-width: 350px;
    margin: 0;
}

.unlimited-mileage {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
}
.unlimited-mileage input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.image-upload-container {
    border: 1px solid #eee;
    width: 120px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-upload-container img {
    max-width: 100%;
    max-height: 100%;
}
.image-upload-container .remove-img {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

.status-badge {
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}
.status-quote { background: #e3f2fd; color: #1976d2; }
.status-completed, .status-complete { background: #e8f5e9; color: #388e3c; }
.status-in-progress { background: #fff3e0; color: #f57c00; }
.status-confirmed { background: #f3e5f5; color: #7b1fa2; }
.status-incomplete { background: #fff3e0; color: #f57c00; }
.status-waiting { background: #e3f2fd; color: #1976d2; }
.status-cancelled { background: #ffebee; color: #c62828; }
.status-active { background: #e8f5e9; color: #388e3c; }
.status-inactive { background: #ffebee; color: #c62828; }


.wizard-nav {
    position: relative;
}
.wizard-nav .nav-pills {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
}
.wizard-nav .nav-pills::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 10%;
    height: 2px;
    width: 80%;
    background: #e9ecef;
    z-index: 1;
}
.wizard-nav .nav-item {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 15px;
}
.wizard-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none !important;
    border: none !important;
    color: #adb5bd !important;
    padding: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}
.wizard-nav .nav-link .step-number {
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e9ecef;
    margin-bottom: 8px;
    display: block;
    text-align: center;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #adb5bd;
}
.wizard-nav .nav-link.active {
    color: #000 !important;
}
.wizard-nav .nav-link.active .step-number {
    border-color: #000;
    background: #000;
    color: #fff;
}
.wizard-nav .nav-link.completed .step-number {
    border-color: #28a745;
    background: #28a745;
    color: #fff;
}
.wizard-nav .nav-link.completed {
    color: #28a745 !important;
}
.search-bar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.vehicle-card {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}
.vehicle-card .card-header {
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}
.vehicle-card .card-body {
    display: flex;
    padding: 15px;
    transition: all 0.3s ease;
}
.vehicle-card:hover {
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.vehicle-image {
    width: 200px;
    height: 120px;
    object-fit: contain;
    margin-right: 20px;
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex-grow: 1;
}
.spec-item {
    font-size: 12px;
    color: #666;
}
.spec-item i {
    margin-right: 5px;
}

.counter-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: fit-content;
}
.counter-input button {
    background: none;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
.counter-input input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.addon-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.addon-icon {
    font-size: 24px;
    margin-right: 20px;
    color: #666;
}
.payment-tabs .nav-link {
    text-align: left;
    border-radius: 0;
    border-bottom: 1px solid #eee;
    color: #333;
}
.payment-tabs .nav-link.active {
    background-color: #f8f9fa !important;
    color: #000 !important;
    border-left: 4px solid #000;
}
.driver-block {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.driver-block:hover {
    border-color: #adb5bd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}
.driver-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #343a40;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    user-select: none;
}
.driver-card-body {
    flex: 1;
    min-width: 0;
}
.driver-name {
    font-weight: 600;
    font-size: 0.925rem;
    color: #212529;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.driver-meta {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.driver-card-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}
.btn-edit-driver,
.btn-delete-driver {
    background: none;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-edit-driver {
    color: #495057;
}
.btn-edit-driver:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #212529;
}
.btn-delete-driver {
    color: #dc3545;
    border-color: #f5c2c7;
}
.btn-delete-driver:hover {
    background: #f8d7da;
    border-color: #f1aeb5;
}
.upload-area-customer {
    border: 2px dashed #eee;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.upload-area-customer:hover, .upload-area-customer.dragover {
    border-color: #FF7A3D;
    background-color: #f8f9fa;
}
.upload-area-customer i {
    color: #FF7A3D;
}
.form-select-custom {
    border: 0;
}
.profile-card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.avatar-circle {
    width: 80px;
    height: 80px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #777;
}
.status-chip {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}
.verify-now {
    color: #FF7A3D;
    text-decoration: underline;
    cursor: pointer;
}
.clickable-row {
    cursor: pointer;
}
#pickupDropoffFields {
    display: none;
}
.address-input-icons {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}
.address-input-icons i {
    cursor: pointer;
    font-size: 1rem;
}
#suggestedChecks .list-group-item {
    transition: all 0.2s ease-in-out;
    border: 1px solid #e9ecef !important;
    padding: 0.75rem 1.25rem;
}
#suggestedChecks .list-group-item:hover {
    background-color: #f8f9fa;
    border-color: #FF7A3D !important;
    transform: translateX(5px);
}
#suggestedChecks .btn-light {
    background-color: #fff;
    border-color: #dee2e6 !important;
    color: #FF7A3D;
    transition: all 0.2s ease;
}
#suggestedChecks .btn-light:hover {
    background-color: #FF7A3D;
    border-color: #FF7A3D !important;
    color: #fff !important;
}
#selectedChecks {
    transition: all 0.3s ease;
    border: 2px dashed #dee2e6 !important;
}

.vehicle-image-fleet {
    width: 80px;
    height: auto;
}

.vehicle-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vehicle-details {
    line-height: 1.4;
}

.badge-custom {
    border-radius: 12px;
    padding: 4px 12px;
    font-weight: 500;
    font-size: 11px;
    color: white;
    display: inline-block;
}
.bg-active { background-color: #26a69a; }
.bg-deactivated { background-color: #546e7a; }
.bg-expired { background-color: #ef5350; }
.bg-na { background-color: #90a4ae; }
.bg-pass { background-color: #26a69a; }

.nav-link-custom {
    font-size: 14px;
}

ul.sub-menu {
    &:before {
        background: none !important;
    }
}

ul.sub-menu li a {
    &:before {
        border: 0 !important;
    }
}