﻿/*
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;  
    overflow-y: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 
@media (min-width: 1440px) {
    .main-container {
        max-width: 1400px;
        margin: auto;
    }

    .my-roads-container {
        height: auto;
        max-height: 100vh;
    }

    my-eroads {
        height: auto;
        max-height: 100vh;
        overflow: hidden;
    }

    .footer-text {
        text-align: left;
        font-size: 1.2rem;
    }
}

 
@media (min-width: 1025px) {
    .navbar {
        height: 70px;
        padding: 10px 20px;
    }

    .logo {
        height: 50px !important;
    }

    .regionBtn, .langBtn, #ContactUsBtn, .logout-link {
        font-size: 16px !important;
    }

    .middle-container {
        max-width: 1200px;
        margin: auto;
    }

    .my-roads-container {
        height: auto;
        max-height: 75vh;
    }
}

 
@media (max-width: 1024px) {
    .middle-container {
        height: auto;
    }

    .my-roads-container {
        height: auto;
        max-height: 70vh;
    }

    my-eroads {
        height: auto;
        max-height: 65vh;
        overflow: hidden;
    }

    .footer-text {
        text-align: center;
    }
}

 
@media (max-width: 768px) {
    .navbar .container-fluid {
        flex-direction: column;
        align-items: center;
        padding: 5px 10px;
    }

    .nav-left, .nav-right {
        flex-direction: column;
        gap: 5px;
    }

    .regionContainer, .lang-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .logo {
        height: 35px !important;
    }

    .regionBtn, .langBtn, #ContactUsBtn {
        font-size: 12px !important;
        padding: 2px 4px !important;
    }

    .middle-container, .my-roads-container, my-eroads {
        width: 100%;
        max-width: 100vw;
        height: auto !important;
        max-height: 70vh;
        overflow: hidden;
    }

    .container-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .varo-links {
        justify-content: center;
        margin: 5px 0;
    }

    .footer-text {
        text-align: center;
    }

    .copyright {
        text-align: center;
    }
}

 
@media (max-width: 480px) {
    .navbar .container-fluid {
        padding: 5px;
    }

    .logo {
        height: 30px !important;
    }

    .middle-container, .my-roads-container, my-eroads {
        width: 100%;
        max-width: 100vw;
        height: auto !important;
        max-height: 75vh;
        overflow: hidden;
    }

    footer {
        padding: 5px !important;
    }
}
*/