.dbside-items {
    width: 292px;
    margin-right: 12px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.table {
    background-color: #fff;
    border: 1px solid #f8f8f8;
    border-bottom: none;
    padding: 0;
}

.table tr  td, .table tr  th{
    padding: 8px;
    border-bottom: 1px solid #f8f8f8;
    vertical-align: middle;
}

.table tr  th {
    font-weight: 600;
    text-align: center;
}
.custom-cbox {
    content: "";
    height: 16px;
    width: 16px;
    background: #fff;
}

/* Customize the label (the container) */
.cbox-container {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.cbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: -4px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #ebebeb;
    border-radius: 2px; 
}

/* On mouse-over, add a grey background color */
.cbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.cbox-container input:checked ~ .checkmark {
    background-color: #fcbf3c;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.cbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.cbox-container .checkmark:after {
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.uname {
    cursor: pointer;
}

.historybtn, .detailbtn {
    cursor: pointer;
}

.db-items-container {
    height: calc(100vh - 52px); 
    width: 100%; 
    margin-left: auto;
    position: relative;
}

.map-container {
    height: 100%;
}

.history-disp {
    height: 250px;
    border: 1px solid rgba(55, 96, 236, 0.1);
    padding: 16px;
    position: relative;
}

.history-input label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.history-input input {
    max-width: 210px;
    background-color: rgba(55, 96, 236, 0.05);
    padding: 7px 15px 9px;
    color: #434343;
    font-size: 16px;
    line-height: 20px;
    border: 1px solid rgba(55, 96, 236, 0.05);                
}

.history-input input:focus {
    background-color: rgba(55, 96, 236, 0.05);                
}

.close-history {
    padding: 8px;
    color: #dc3545;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 10px;
}

#speedbtns button {
    width: 42px;
}

.searchbox {
    max-width: 100% !important; 
}

.search-place {
    position: absolute;
    top: 12px;
    width: calc(100% - 38px);
    z-index: 500;
    text-align: right;
    right: 50px;
}

.vehicle_select {
    position: absolute;
    left: 50px;
}

.vehicle_select button {
    width: 50px;
}

.vehicle_select .btn-outline-warning {
    background-color: #fff;
    font-size: 22px;
}

.search-place .searchbox {
    max-width: 250px !important;
}

.search-place .options-container {
    max-width: 250px;
    right: 16px;
    left: auto;
    top: 42px;
}

#dispsbtn:focus,#dispsbtn:active {
    outline: none;
}