/* CSS for backend */

@media (max-width: 575px) {
    
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .backend-container{
        max-width: 540px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .backend-container{
        max-width: 720px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .backend-container{
        max-width: 960px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .backend-container{
        max-width: 1140px;
    }
}

/* Extra large devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {
    .backend-container{
        max-width: 1320px;
    }
}

/* Extra large devices (large desktops, 1800px and up) */
@media (min-width: 1800px) {
    .backend-container{
        max-width: 1600px;
    }
}