/* Base styles for all devices */

/* Extra small devices (phones, below 576px) */
@media screen and (max-width: 575.98px) {
    .container {
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media screen and (min-width: 576px) and (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
}

/* Large devices (desktops, 992px and up) */
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
    .container {
        max-width: 1140px;
    }
}

/* XXL devices (wider desktops, 1400px and up) */
@media screen and (min-width: 1400px) and (max-width: 1599.98px) {
    .container {
        max-width: 1320px;
    }
}

/* Ultra Wide devices (1600px and up) */
/* @media screen and (min-width: 1600px) and (max-width: 1919.98px) {
    .container {
        max-width: 1500px;
    }
} */

/* 2K & 4K Displays (1920px and up) */
/* @media screen and (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }
} */

/* Retina and High DPI displays */
/* @media screen and (-webkit-min-device-pixel-ratio: 2),
    screen and (min-resolution: 192dpi),
    screen and (min-resolution: 2dppx) {
    .container {
    }
} */
