@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;
    font-family: 'Ainslie Sans';
}

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;
}

.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%;
}
.info-row{
    display: flex;
    flex-direction: row;
    gap:5%;
    font-size: 1.3em;
    width: 100%;
}

.content-container{
    display: flex;
    background-color: #C1CFDD;
    width: 96%;
    height: 100%;
    border-radius: 20px 0 20px 0;
    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%;
}

.container-timeline{
    margin-top: 5%;
    margin-left: 3%;
    overflow-y: auto;
    width: 95%;

    /* estilizando a barra de rolagem */
    &::-webkit-scrollbar {
        width: 10px;  
        height: 5px; 
    }

    /* Estiliza o fundo da trilha da barra de rolagem */
    &::-webkit-scrollbar-track {
        background: #C1CFDD; 
    }

    /* Estiliza o "polegar" (a parte que você arrasta) da barra de rolagem */
    &::-webkit-scrollbar-thumb {
        background: #8FA3BD; 
        border-radius: 10px; 
        
    }

    /* Estilo do polegar ao passar o mouse */
    &::-webkit-scrollbar-thumb:hover {
        background: #4D576C; 
    }

    &::-webkit-scrollbar-corner {
        background-color: #C1CFDD; 
        
    }
    
}

.timeline {
    position: relative;
    margin-left: 12%;
    border-left: 2px solid #555A89;
  }
  
  .timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 2rem;
  }
  
  .timeline-date {
    position: absolute;
    left: -12%;
    top: 40%;
    color: #686B99;
    font-family: sans-serif;
  }
  
  .timeline-marker {
    position: absolute;
    left: -0.8%;
    top: 40%;
    width: 1.5%;
    height: 20%;
    background: #686B99;
    border-radius: 3px;
  }

  
  .timeline-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #cdd4e1;
    width: 78%;
    margin-left: 10%;
    padding: 3%;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: sans-serif;
    color: #1e1e2f;
  }

  
  .timeline-time {
    color: #555A89;
  }

  .icone-not{
    width: 3%;
  }

  .iconeVerm{
    background-color: #CB1616;
    width: 3%;
    height: 80%;
  }


  .iconeAzul{
    background-color: #012BFF;
    width: 3%;
    height: 80%;

  }

 
  