.daterangepicker .drp-calendar td.active.start-date.end-date {
    background-color: var(--bs-primary) !important;
    color: white !important;
}

.calendar-table tr td.today {
    border-style: dashed;
    border-width: 2px;
    border-color: var(--bs-primary);
}

.iti {
    display: block !important;
}
.menu-item .menu-link{
    padding-top: 7px;
    padding-bottom: 7px;
}

/* search box */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
}
.input-container {
    position: relative;
    width: 100%;
    z-index: 1003;
}
.input-container .form-control {
    padding-left: 40px;
    border-radius: 0px;
    border: 0px;
}
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 0px 0px 4px 4px;
    z-index: 1003;
    display: none;
    max-height: 100vh;
    overflow: auto;
}
.suggestions .suggestion-item {
    padding: 10px;
    cursor: pointer;
}
.suggestions .suggestion-item:hover {
    background-color: #f8f9fa;
}