body {
    /* margin: 0;
    padding: 0;
    height: 2000px;
    font-family: Arial, sans-serif; */
    background-image: linear-gradient(to bottom right, #eaeaea, #e0e0e0);
    overflow-x: hidden;
    color: #252525 !important;
}

/* starts of vertical menu ------------------------------------------------------*/
/* Default styles (applies to all screens) */
.vertical-menu {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: rgb(0 0 0 / 0.5);
    color: #fff;
    padding: 10px 0;
    width: 180px; /* Expanded width for larger screens */
    overflow: hidden;
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Menu item styles */
.vertical-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.vertical-menu ul li {
    margin: 10px 0;
    text-align: center;
    white-space: nowrap;
}

.vertical-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.vertical-menu ul li a:hover {
    color: red;
}

/* Collapsed menu for smaller screens */
@media screen and (max-width: 1600px) {
    .vertical-menu {
        width: 20px; /* Collapsed default width */
    }

    .vertical-menu:hover {
        width: 180px; /* Expand on hover */
    }

    .vertical-menu:before {
        padding-left: 5px;
        /* content: ">"; */
        position: absolute;
        margin-top: 110px;
        /* animation: blinker 1s linear infinite; */
    } 

    @keyframes blinker {
        50% {
            opacity: 0;
        }
    }

    .vertical-menu:hover::before {
        opacity: 0;
    }

    .vertical-menu ul li {
        padding-right: 20px;
        padding-left: 20px;
    }
}


/* end of vertical menu -------------------------------------------------------- */

/* Custom CSS for unselected tab buttons */
.nav-tabs .nav-link {
    color: grey;
    /* Default color for unselected tabs */
}

.nav-tabs .nav-link.active {
    color: #252525;
    ;
    /* Color for the active tab */
    font-weight: bold;
    /* Optional: Make the active tab stand out */
}

.btn-brochure:hover {
    color: grey;
}

.btn-floating-brochure {
    color: #e9e9e9;
}

.btn-floating-brochure:hover {
    color: rgb(255, 57, 57);
}

.btn-truckselection:hover {
    color: red;
}

/* current page truck navigation glowing link */
.currentpage {
    color: red !important;
}