
.step-menu {
    text-align: center;
    margin-bottom: 20px;
    pointer-events: none;
    cursor:default;
}

.step-btn {
    margin: 5px;
    padding: 10px 15px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    background-color: lightgray;
    cursor: default;
}

    .step-btn.active {
        background-color: blue;
        color: white !important;
    }

    .step-btn.disabled {
        color:black;
    }

    .hidden {
        visibility:hidden;
    }



.booth-box {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: yellow;
    opacity: 0.7;
    border: 1px solid black;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .booth-box.selected {
        background-color: rgba(144, 238, 144, 1); /* Light green */
        border: 2px solid green;
        pointer-events:none;
    }

    .booth-box.reserved {
        /*background-color: rgba(0, 0, 0, 1);*/ /* Black */
        background-color: black; /* black */
        color: white;
        pointer-events: none;
    }

.overlay {
    background-color: black;  
    position: absolute; /* Positions the overlay relative to the container */
    border: 2px solid white;
    z-index: 10; /* Ensure it's above the background content */
    pointer-events: none; /* by default */
    color: #ffffff;
    display: flex; /* Make the overlay a flex container */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Vertically center content within the flex container */
    align-items: center; /* Horizontally center content (optional, but often desired) */
    top:0;
    left:0;
 /*   width: 100%;
    height: 100%;*/
}


.overlay.reserved {
    /*background-color: rgba(0, 0, 0, 0.5);*/ /*Black */
    background-color: black; /* black */
    pointer-events: none;
    cursor: not-allowed;
    color: #ffffff;
    text-align: center;
    align-content: center;
    text-align: center;
}

.overlay.selected {
    /*background-color: rgba(0, 255, 0, 0.5);*/ /*light green*/
    background-color: black;
    pointer-events: none;
}


.overlay-content p {
    color: #ffffff; /* Set text color to white */
    font-weight: bold;
    z-index: 3;
    text-align: center;
    background-color: black;
    border-color: #ffffff;
    border: 2px;
    position: absolute;
}

.overlay-text { 
    color: white; /* Change text color to white */
    text-align: center;
    font-weight: bold;
}

.vertical-text {
    color: white;
    font-weight: bold;
    font-size: 14px;
    writing-mode: vertical-rl; /* Display text vertically, right-to-left columns */
    /*text-orientation: upright;*/ /* Keep characters upright (optional, based on desired effect) */
    transform: rotate(-180deg);
}

.map-container {
    position: relative;
    display: inline-block;
    width: 80%; /* Or a specific max-width like 640px */
    /*max-width: 750px;*/ /* Optional: Constrains max width but keeps it responsive */
}


.booth-info {
    margin-bottom: 10px;
}
.form-group label {
    font-size: 14px; /* consistent with the rest */
    font-weight: 600;
}

.form-control {
    height: 34px; /* consistent input height */
    max-width: 280px;
}

.three-col-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.three-col {
    flex: 0 0 32%;
    min-width: 240px;
    margin-bottom: 10px;
}

#divDriverVehicleInfo {
    overflow-y: hidden; /* no vertical scroll */
}

.btn-row {
    text-align: center;
    margin-top: 15px;
}


.is-invalid {
    border-color: red;
    background-color: #fff0f0;
}

/*.map-container {
    position: fixed;*/
    /*top: 0;*/ /* Adjust as needed for desired vertical position */
    /*left: 0;*/ /* Adjust as needed for desired horizontal position */
    /*width: 50%;*/ /* Or a specific width */
    /*height: 50vh;*/ /* Or a specific height */
    /* Add other styling like background-color, z-index, etc. */
    /*z-index: auto;
}*/

footer {
    margin-bottom: 0;
    padding-bottom: 0;
}

.map-disabled {
    pointer-events: none;
}

/*html, body {
    overflow: auto;
}*/


/* Style the text to be overlapped */
.overlapping-text {
    color: white; /* the default color of the text */
    text-align: center;
    font-weight: bold;
}

/*.shadow {
    text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);
}*/

.textwhite {
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    /*background-color: #000000;*/
    background-color: black;
    border-color: #ffffff;
    border: 2px;
}



.map-overlay {
    /* Styles for the overlay itself (positioning, background, etc.) */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.5);*/ /* Semi-transparent background */
    background-color: black;
    z-index: 10; /* Ensure overlay is above the map */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}



 