@font-face {
    font-family: 'Ainslie Sans';
    src: url('../fonts/ainslie-sans-normal-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
}

body{
    background-color:#C1CFDD;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.containerPrincipal{
    width: 90%;
    height: 90%;
    background: linear-gradient(180deg, #96A9D2 0%, #7F89AD 15%, #5A647C 35%, #4D576C 100%);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    border-radius: 20px;
    display: flex;
}

.header{
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
}

.date-time{
    margin-left: auto;
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 5px;
    color: white;
    font-size: 1rem;
    font-family: 'Ainslie Sans';
    font-weight: 500;
    margin-right: 3%;
}

#botao-opcoes{
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-left: 2%;
}
#botao-opcoes img{
    width: 190%;
    height: auto;
}

.sidebar{
    height: 100%;
    width: 6%;
}

.sidebar ul{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 35px;
}
.activated{
    background-color: #C1CFDD;
    border-radius: 15px 0 0 15px;
}
.sidebar ul li:first-child {
    margin-top: 80%; /* Move apenas o primeiro item para baixo */
}
.sidebar ul li:last-child {
    margin-top: auto;
    margin-bottom: 20%;
}
.sidebar ul li{
    list-style: none;
    display: flex;
    width: 80%;
    align-items: center;
    color: white;
    margin-left: 15%;
    padding: 10px;
    padding-right: 128%;
}
.sidebar ul li span{
    margin-left: 50%;
    font-family: 'Ainslie Sans';
    font-weight: 400;
    font-size: 1.5rem;
    display: none;
}
@media (max-width: 1850px){
    .sidebar ul li span{
        font-size: 1rem;
    }
}
.sidebar li span.visivel {
   display: block;
}

#nome-ativado{
    color: #4D576C;
}
.sidebar ul li a{
    text-decoration: none;
    color: white;
}

.icones-menu{
   width: 50%;
   min-width: 25px;
   height: auto;
}

.container-bottom{
    width: 100%;
    display: flex;
    height: 90%;
}

.content-container{
    display: flex;
    background-color: #C1CFDD;
    width: 96%;
    height: 100%;
    border-radius: 20px 0 20px 0;
    justify-content: center;
    flex-direction: column;
    transition: all 0.15s ease-in-out;
    box-shadow: 0px 30px 55px 8px #4D576C4D;

}
.content-container.expandido {
    width: 92%;
    margin-left: 8%;
}

.divMes{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 2%;
    width: 60%;
    margin-bottom: 2%;

}

.setas{
    width: 15%;
    min-width: 9px;
    height: auto;
}

#setaEsq{
    border: none;
    cursor: pointer;
    background-color: #C1CFDD;
    padding-right: 1%;
    background-color: transparent;
}
#setaDir{
    border: none;
    background-color: transparent;
    cursor: pointer;
    background-color: #C1CFDD;
    padding-left: 1%;
}
#mes{
    font-family: 'Ainslie Sans';
    font-weight: 400;
    color: #242535;
}
.dia{
    font-family: 'Ainslie Sans';
    font-weight: 500;
    font-size: 1rem;
    color: #242535;
    padding-bottom: 10px;
}
table {
    width: 92%;
    border-collapse: collapse;
    margin-left: 4%;
}
td{
    padding: 5px 0 5px 0;
}

/* Estilo para o card */
.card-producao{
    border: 1px solid #F6F4EA;
    position: relative;
    width: 10.5vw;
    font-family: 'Ainslie Sans';
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 auto;
    padding: 7px;
    border-radius: 7px;
    box-shadow: 2px 10px 30px 5px rgba(0, 0, 0, 0.181);
    overflow: hidden;
    background-color: #F6F4EA;
    opacity: 0.7;
    min-height: 65px;
}
.fds{
    width: 40px;
}
.diaNumero{
    font-size: 1rem;
    color: #242535;
    margin-bottom: 5px;
    position: absolute;
    top: 8px;
    right: 8px;
}
.numPedidos, .variacaoPedidos{
    font-size: 1rem;
    color: #4D576C;
}
.quadro-producao{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.card-producao{
    background-color: #F6F4EA;
    height: 20px;
}

#nomeDiasMobile{
    display: none;
}

.info-aba{
    display: none;
}



