@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #e3e5eb;
    width: 100vw;
    height: 100vh;
}


.content {
    /* background-color: red; */
    width: 77%;
    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;
}


.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;
}

button.btn.btn-primary {
    z-index: 1000; /* Garante que o botão esteja acima de outros elementos */
    position: relative; /* Garante que o botão respeite o z-index */
}