@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ececec;
    width: 100vw;
    height: 100vh;
    margin: auto;
    display: flex;
    overflow: scroll;
    overflow-x: hidden;
}

.boxleft {
    width: 20%;
    height: 100%;
    background-color: white;
    overflow: hidden;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.form-control-color {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

.form-control-color>input {
    border-radius: 10px;
    border: none;
    padding: 8px;
    background-color: #dadada;
    width: 80%;
}


.separator {
    height: 8px;
    width: 100%;
    background-image: linear-gradient(90deg, transparent, gray);

    border: 0;
    height: 1px;
}



.btn-warning {
    background-color: orange;
    font-weight: 700;
    width: 80%;
    padding: 15px;
    text-transform: uppercase;
}

.menu-controller {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-left: 0;
}

li {
    background-color: #f1f1f1;
    padding: 12px;
    width: 100%;
    text-align: left;
}

li:hover {
    background-color: #e7e7e7;
    cursor: pointer;
}


.boxright {
    width: 76%;
    min-height: 100%;
    /* Garante que tenha pelo menos a altura da janela, mas pode crescer */
    background-color: white;
    right: 15px;
    top: 25px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    -webkit-box-shadow: -4px 21px 39px -2px rgba(0, 0, 0, 0.23), -4px 21px 39px -2px rgba(0, 0, 0, 0.123);
    box-shadow: -4px 21px 39px -2px rgba(0, 0, 0, 0.23), -4px 21px 39px -2px rgba(0, 0, 0, 0.116);
    padding-bottom: 15px;
}

.card {
    width: 95%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container {
    width: 100%;
}

.table {
    width: 100%;
}

.card-body {
    width: 100%;
    overflow: scroll;
    overflow-x: hidden;
}