* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none;
    color: black;
}

.cls-container {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 90px auto;
    grid-template-areas: "header header" "menu content";
    grid-template-rows: 50px auto;

    transition: all .3s ease;
}

@media screen and (max-width: 900px) {
    .cls-container {
        width: 100%;
        min-height: 100vh;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 90px auto;
        grid-template-areas: "header header" "content content";
        grid-template-rows: 50px auto;

        transition: all .3s ease;
    }
}

.cls-container.cls-active {
    grid-template-columns: minmax(300px, 18%) auto;
}


.cls-menu-left {
    grid-area: menu;
    background-color: rgb(30, 34, 36);
}

/*.cls-content {*/
/*    grid-area: content;*/
/*    background-color: rgb(237, 237, 237);*/
/*    border: 1px solid #c9c9c9;*/
/*    border-radius: 12px;*/
/*}*/

/*.cls-main {*/
/*    background-color: rgb(244, 244, 244);*/
/*    padding-left: 15px;*/
/*    padding-right: 15px;*/
/*}*/


.cls-main {
    grid-area: content;
    background-color: rgb(225 225 225);
    padding-left: 15px;
    padding-right: 15px;
}

.cls-main-v2 {
    min-height: 100vh;
    padding: 40px 15px 15px;  /* evita colapso del margin-top del hijo */
    background: #f5f7fa;
}

.cls-content {
    background: #ffffff;
    border: 1px solid #c9c9c9;
    border-radius: 12px;
    height: 100%;
}

.cls-clear-filters {
    color: #556fc3;
    margin-left: 10px;
}

.cls-add-new {
    text-align: right;
    border-radius: 15px;
}