body {
    height: 100%;
    background-color: #666666;
    margin: 10px 40px;
    font-family: 'Ubuntu', sans-serif;
}
#dateTime{
    font-size: 60px;
}
.driver-name{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
}
.indication-colours{
    position: fixed;
    width: calc(100% - 80px);
    bottom: 40px;
}
.digit,
.dig {
    border-radius: 5px;
    color: #343a40;
    background-color: #e6e6e6;
    padding: 10px 30px;
    font-size: 4rem;
    cursor: pointer;
}
.dialer {
    margin: 0 auto;  /* Centers the dialer */
    max-width: 600px; /* Adjust width as per your layout */
}

#output {
    font-size: 2rem;
    font-weight: bold;
    color: #e6e6e6;
}
#outputDisplay {
    min-height: 4rem;
}

.digit:active,
.dig:active {
    color: #e6e6e6;
    background-color: #1976d2;
}

#passwordInput {
    border: none;
    outline: none;
}

/* Center text within the input field */
#passwordInput::placeholder {
    text-align: center;
}

.text-black{
    color: #000000;
}
.text-site-green{
    color: #19bb18;
}

.driver-action{
    --bs-btn-padding-y: .75rem;
    --bs-btn-padding-x: .75rem;
    --bs-btn-font-size: 1.25rem;
}
.driver-vehicles{
    /* --bs-btn-padding-y: .5rem; */
    --bs-btn-padding-x: .5rem;
    --bs-btn-font-size: 1.5rem;
}
.jconfirm-title{
    font-size: 2rem !important;
}
.jconfirm-content{
    font-size: 1.3rem !important;
}

.progress{
    height: 20px;
    background: #e9e9ea;
    border-radius: 15px;
    overflow: visible;
    position: relative;
    width: 90%;
}
.progress:before,
.progress:after{
    content: "";
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: -8px;
    left: 0;
    z-index: 1;
}
.progress:after{
    border: 7px solid #e9e9ea;
    left: auto;
    right: 0;
}
.progress .progress-bar{
    box-shadow: none;
    border: none;
    border-radius: 15px;
    position: relative;
    overflow: visible;
    -webkit-animation: animate-positive 1s;
    animation: animate-positive 1s;
}
.progress .progress-value{
    text-align: center;
    width: 70px;
    height: 40px;
    line-height: 32px;
    border-radius: 20px;
    background: #fff;
    font-size: 17px;
    font-weight: 600;
    position: absolute;
    top: -12px;
    right: -35px;
    z-index: 2;
}
.progress.progress-green:before{ border: 7px solid #53aa2c; }
.progress.progress-green .progress-value{
    border: 5px solid #53aa2c;
    color: #53aa2c;
}
@-webkit-keyframes animate-positive{
    0%{ width: 0; }
}
@keyframes animate-positive{
    0%{ width: 0; }
}


.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid lightblue;
    border-right-color: orange;
    animation: l2 1s infinite linear;
  }
  @keyframes l2 {to{transform: rotate(1turn)}}

.non-clickable-input {
    pointer-events: none; /* Disable pointer events */
    background-color: #f8f9fa; /* Optional: Provide a visual cue that the input is non-clickable */
    user-select: none; /* Disable text selection on the input */
    touch-action: none; /* Disable touch actions */
}
#logout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#logout-message {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

#logout-message p {
    font-size: 20px;
    margin-bottom: 20px;
}

#stay-logged-in {
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
}
hr {
    border: 0;
    height: 10px;
    background: #ccc; /* Change this color to suit your design */
    margin: 10px 0; /* Adjust the top and bottom margins as needed */
}
.row {
    display: flex;
    justify-content: center; /* Center horizontally */
    width: 100%;
}

/* Specific adjustments for the row-cols-2 to handle two main columns */
.row-cols-2 {
    justify-content: space-around; /* This can help distribute space evenly */
}

/* Make sure .col within row-cols-2 has no additional padding or margin affecting layout */
.row-cols-2 .col {
    padding: 0;
    display: flex;
    justify-content: center; /* Center the content of each column */
    flex: 1; /* Each column takes equal space */
}


.on-screen-keyboard {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.keyboard-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    padding: 0px 10px;
}

.keyboard-close {
    background: #dc3545;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.keyboard-close:hover {
    background: #c82333;
}

.keyboard-close:focus {
    outline: none;
}

.keyboard-row {
    display: flex;
    margin-bottom: 5px;
}

.key, .key-space, .key-backspace {
    padding: 12px 24px;
    margin-right: 5px;
    font-size: 24px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.2s, transform 0.1s;
}

.key {
    background-color: #007bff;
    color: white;
}

.key:hover {
    background-color: #0056b3;
}

.key:active {
    background-color: #00408c;
    transform: scale(0.95);
}

.key-space {
    flex-grow: 2;
    background-color: #007bff;
    color: white;
}
.key-space:hover {
    background-color: #0056b3;
}
.key-space:active {
    background-color: #00408c;
    transform: scale(0.95);
}

.key-backspace {
    background-color: #dc3545;
    color: white;
}

.key-backspace:hover {
    background-color: #c82333;
}

.key-backspace:active {
    background-color: #bd2130;
    transform: scale(0.95);
}
.key-capslock {
    background-color:#007bff;
    color: white;
    position: absolute;
    left: 10px;
    top: 92px;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
}

.key-capslock.active {
    background-color:#00408c;
}




.dragIcon{
    font-size: 35px;
    background: grey;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.closeIcon{
    font-size: 35px;
    background: red;
    padding: 10px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.superVisor{
    width: 600px;
    border-radius: 5px;
    border: gray;
    font-size: 30px;
    height: 55px;
    margin-left: 10px;
    padding: 5px 20px;
}
.superVisor:focus{
    outline: none;
}
#swap_show_all_vehicles{
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.swapPlaceShow{
    width: 600px;
    margin: 20px 0px;
    margin-left: 15px;
    padding: 10px 10px;
    border-radius: 5px;
    border: none;
    background-color: #dddddd;
    font-size: 24px;
}
.swapPlaceShow:focus,.swapPlaceShow::selection{
    outline: none;
}

.swapDriverShow{
    width: 400px;
    margin: 20px 0px;
    padding: 10px 10px;
    border-radius: 5px;
    border: none;
    background-color: #dddddd;
    font-size: 24px;
}
.swapDriverShow:focus,.swapDriverShow::selection{
    outline: none;
}
.status-action.active{
    background-color: #007bff;
}
#pageVehicleContent{
    max-height: 72vh;
    overflow-y: auto;
    overflow-x: hidden;
}
#vehicleOutVehicles{
    max-height: 97vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.standbyFor.active{
    background-color: #007bff;
}
.whereWereYou.active{
    background-color: #007bff;
}
.lineStation{
    display: none;
}
.lineStationForDidYouGoAnywhere{
    display: none;
}
.didYouGoAnywhere.active{
    background-color: #007bff;
}
.LinesFrom.active{
    background-color: #007bff;
}
.StationFrom.active{
    background-color: #007bff;
}
.Linesto.active{
    background-color: #007bff;
}
.StationFrom1.active{
    background-color: #007bff;
}
.modal_text{
    margin: 0;
    font-weight: 600;
    font-size: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.yellow{
    background-color: yellow;
}
.yellow:hover{
    background-color: rgb(201, 201, 0);
}
.orange{
    background-color: orange;
}
.orange:hover{
    background-color: rgb(209, 136, 0);
}
.hide{
    display: none;
}
.safeToDrive.active{
    background-color: #007bff;
}
.fault.active{
    background-color: #007bff;
}
.inputForDefect{
    font-size: 28px;
    padding: 10px 20px;
}
.report_defect_button{
    position: absolute;
    bottom: 50px;
    z-index: -1;
    width: 98%;
}
.stationInput{
    border-radius: 5px;
    border: gray;
    padding: 5px 20px;
    font-size: 30px;

}
.stationInput:focus{
    outline: none;
}

.stationToInput{
    border-radius: 5px;
    border: gray;
    padding: 5px 20px;
    font-size: 30px;

}
.stationToInput:focus{
    outline: none;
}

.StationTo.active{
    background-color: #007bff;
}
.manager.active{
    background-color: #007bff;
}
.selectDriver.active{
    background-color: #007bff;
}
.adverseStatus{
    padding: 0px 10px;
    border-radius: 5px;
    background-color: #56b756;
    font-size: 19px;
}
.adverseStatusBox{
    cursor: default;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
}
#colorKey{
    position: absolute;
    bottom: 100px;
    left: 36px;
}
.customBtn{
    width: 100px;
    height: 50px;
    font-size: 26px;
}