/* this is the user style sheet */


.loLowerBody {
    position: absolute;
    left: 0;
    background-color: #ffffff;
    top: 250px; /* default for portrait */
}

/* Override for landscape orientation */
@media screen and (orientation: landscape) {
    .loLowerBody {
        top: 280px;
    }
}


@media (orientation: portrait) {
        .dispPort { display: block; }
        .dispLand { display: none; }
}

@media (orientation: landscape) {
        .dispPort { display: none; }
        .dispLand { display: block; }
}



.pageTitle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 10px;
    text-align: center;
    font-size: 40px; 
    background-color: rgba(0, 0, 0, 0.6);  /* semi-transparent black */
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: #000000;
    box-shadow: 2px 12px 20px rgba(0,0,0,0.8);
}

.pageFooter {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}


.mainServiceTab {
    position: fixed;
    display: flex; /* Use flexbox */
    align-items: center; /* Vertically center */
    width: 250px;
    padding: 6px 10px 6px 0;
    border-style: solid;
    border-width: 1px 1px 1px 0;
    border-color: #ffd200;
    border-radius: 0 9px 9px 0;
    background-color: #5f5f5f; /* Optional for contrast */
    box-shadow: 2px 12px 20px rgba(0,0,0,0.8);
}


/* rentals */
.obVehClassBlocks {
    text-align: center; 
    height: 90px; 
}

.classBlock {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: text-top;
    box-sizing: border-box;
    width: 23%;
    margin: 5px 5px;
    padding: 4px 4px;
    height: 150px;
    text-align: center;
    background-color: rgba(0,0,0,0.6);
    border: 1px solid rgba(0,0,0,0.6);
    border-radius: 16px;
    color: #8f8f8f;
}

.classBlockSelect {
    background-color: #000000;
    border: 1px solid gold;
    color: #cea801;
}


.classImage {
    box-sizing: border-box;
    width: 60%;
    object-fit: cover;
}

.classBlockName {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    left:0px;
    bottom: 12px;
    font-size: 32px;
}

/*
    Vehicle listing by 
*/

.class-vehicle-list {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    top: 700px;
    left:0px;
    bottom: 60px;
    text-align: center; 
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
}
.class-vehicle-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.class-vehicle-block {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: text-top;
    width: 23%;
    margin: 8px 8px;
    padding: 5px 5px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 16px;
}

.class-vehicle-title {
    color: #ffffff;
    font-size: 18px;
}

.class-vehicle-mainImg {
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    width: 100%;
    border-radius: 8px;
}

/*
    Vehicle listing by type
*/
.type-vehicle-list {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    top: 700px;
    left:0px;
    bottom: 60px;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
}
.type-vehicle-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.type-vehicle-entry {
    margin: 12px;
    padding: 12px 12px;
    box-sizing: border-box;
    background-color: rgb(209, 207, 207);
}

.type-vehicle-title {
    font-size: 24px;
    color: #cea801;
}

.type-vehicle-mainImg {
    width: 300px;
    margin: 0 12px 0 0;
    border-radius: 8px;
}





.dateList {
    display: flex;
    gap: 10px;
    padding: 10px;
    flex-wrap: wrap;
}

.dateBox {
    background-color: #0aac40;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    min-width: 40px;
    text-align: center;
}

.dateBox.blocked {
    background-color: #5a1717;
    color: white;
}