body {
    height: 100%;
    background-color: #666666;
    margin: 10px 40px;
    font-family: 'Ubuntu', sans-serif;
}
#dateTime{
    font-size: 60px;
}
.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; }
}

.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 */
}
