@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #e3e5eb;
    width: 100vw;
    height: 100vh;
}

main {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}


.content {
    /* background-color: red; */
    width: 80%;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 6px;
    position: absolute;
    right: 0;
    top: -80px;
    padding: 15px;
    background-color: #e9e9e9;
}

.titulo-nav {
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 10px;
}

.titulo-item {
    display: flex;
    height: min-content;
    justify-content: center;
    align-items: center;
    margin-left: 1.5%;
    margin-top: 0.9%;
    gap: 12px;
    color: #b3b3b3;
}

.titulo-item>h3 {
    font-weight: 400;
    font-size: 20px;
}

.titulo-item>i {
    color: #7d17f1;
}

.titulo-item>i:hover {
    color: black;
    cursor: pointer;
}


.icon-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.6%;
    margin-right: 1.5%;
    font-size: 22px;
    color: #7d17f1;
}

.icon-item:hover {
    color: #600ebe;
    cursor: pointer;
}

.info-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 30%;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
}

.info-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 180px;
    height: 180px;
    border-top: 5px solid black;
    border-left: 5px solid black;
    border-radius: 100px;
    box-sizing: content-box;
    cursor: pointer;
}

.info-item-1 {
    border-color: #8f8f8f;
}

.info-item-2 {
    border-color: #17a1f1;
}

.info-item-3 {
    border-color: #95f953;
}

.info-item-4 {
    border-color: #f7d700;
}

.info-item-5 {
    border-color: #af171a;
}

.title-info {
    font-size: 50px;
    font-weight: 500;
}

.title-info-min {
    font-size: 15px;
}

.filtros-box {
    height: 10%;
    background-color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding: 10px;
}

.filtros-item {
    width: fit-content;
    border: 2px solid #e6e6e6;
    color: #8f8f8f;
    height: min-content;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

select option:hover {
    background-color: red; /* Tentativa de estilizar o hover, mas pode não funcionar em todos os navegadores */
  }

.divid {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.esquerda {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 95%;
    border-radius: 10px;
    background-color: white;
    overflow-y: scroll;
}

/* Estilo para a barra de rolagem no Chrome, Edge e Safari */
.esquerda::-webkit-scrollbar {
    width: 10px; /* Largura da barra de rolagem */
  }
  
  .esquerda::-webkit-scrollbar-thumb {
    background: #c7c7c7; /* Cor do polegar (a parte móvel da barra) */
    border-radius: 5px; /* Arredondamento dos cantos */
  }
  
  .esquerda::-webkit-scrollbar-thumb:hover {
    background: #555; /* Cor quando o mouse passar por cima */
  }
  
  .esquerda::-webkit-scrollbar-track {
    background: #f1f1f1; /* Cor de fundo da trilha */
  }
  
  /* Estilo para a barra de rolagem no Firefox */
  .esquerda {
    scrollbar-width: thin; /* Largura fina */
    scrollbar-color: #888 #f1f1f1; /* Cor do polegar e da trilha */
  }

.direita {
    display: flex;
    flex-direction: column;
    width: 45%;
    height: 80%;
    border-radius: 10px;
    gap: 5px;
    align-items: center;
}

.direita > span {
    font-size: 22px;
    text-transform: uppercase;
    color: #b3b3b3;
    font-weight: 400;
}

.btn:hover {
    border: 2px solid #e6e6e6 !important;
}

.table {
    width: 98%;
    text-align: center;
    margin-top: 5%;
}

td {
    cursor: pointer;
}

.direita-wrapper {
    width: 100%;
    gap: 5px;
    display: flex;
    flex-direction: column;
}

.tabela {
    height: auto;
    width: 100%;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
}

.topo {
    width: 100%;
    background-color: white;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    display: flex;
    padding-left: 3%;
    font-weight: 500;
    color: #b3b3b3;
    position: relative;
    
}

.topo > span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
}

.topo > span > i {
    color: #747474;
    line-height: 100%;
}