@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;
}


.content {
    /* background-color: red; */
    width: 80%;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 6px;
    position: absolute;
    right: 0;
    top: -50px;
    align-items: center;
}


.contador {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: -1;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
}

.titulo-item {
    display: flex;
    height: min-content;
    align-items: center;
}

.titulo-item>h3 {
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    line-height: 100%;
    margin: auto;
}


.titulo-item>i:hover {
    color: black;
    cursor: pointer;
}




.icon-item:hover {
    color: #600ebe;
    cursor: pointer;
}

/* Estilo para a barra de rolagem no Chrome, Edge e Safari */

/* Estilo para a barra de rolagem no Firefox */

.table-responsive {
    width: 100%;
    text-align: center;
    margin-top: 2%;
    border-radius: 10px;
}

.table-striped>tbody>tr:nth-child(odd)>td, 
.table-striped>tbody>tr:nth-child(odd)>th {
   background-color: rgb(77, 159, 253);
   color: white;
   font-weight: 500;
}