@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;
}

.wrapper {
    width: 80%;
    height: 100%;
    position: absolute;
    right: 0;
}


.content {
    width: 90%;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 6px;
    position: relative;
    margin: auto;
    top: -50px;
    align-items: flex-start; /* Modifiquei de 'left' para 'flex-start' */
    z-index: 2000;
}


.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;
}


.swal2-container {
    z-index: 2000 !important; /* Define um z-index elevado para garantir que o alerta fique acima de outros elementos */
}

.table-container {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column !important;
}

.select2-container--open {
    z-index: 9999 !important; /* Garante que o dropdown fique acima de outros elementos */
}

.ver-btn {
    width: 100%;
    background-color: #8235ff;
    color: white;
}


.ver-btn::before {
    content: '🙈 ';
    transition: 1s ease-in-out;
}

.ver-btn:hover::before {
    content: '🧐 ';
    transition: 1s ease-in-out;
}