        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background-color: #d5d5d5;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        *::-webkit-scrollbar {
            width: 0.5rem;
            height: 0.5rem;
            /* Largura e altura da barra de rolagem */
        }

        *::-webkit-scrollbar-thumb {
            background-color: #045808;
            border-radius: 1rem;
            /* Cor da barra de rolagem */
        }

        *::-webkit-scrollbar-track {
            background-color: #f0f0f0;
            /* Cor do fundo da barra de rolagem */
        }

        /* Estilizando a barra de rolagem no Firefox */
        * {
            scrollbar-color: #f0f0f0 #045808;
        }

        a {
            text-decoration: none;
        }

        label {
            width: 100%;
            margin-bottom: 5px;
        }

        img {
            background-position: center;
            background-size: cover;
        }

        input,
        select {
            width: 100%;
            height: 1.8rem;
            max-height: 3rem;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        select {
            padding-inline: 0.5rem;
        }

        button {
            max-width: 100%;
            min-width: 10%;
            padding: 10px;
            background-color: #076803;
            color: #f1f1f1;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #0ea209;
        }

        button[disabled="true"] {
            background: rgb(169, 205, 181)
        }

        button[type="reset"] {
            background-color: #550303;
            color: #f1f1f1;
        }

        button[type="reset"]:hover {
            background-color: #c60a0a;
        }

        /* 
        table {
            border-collapse: collapse;
            width: 100%;
            overflow: scroll;
        }

        table td,
        table th {
            white-space: nowrap;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
        }

        thead {
            position: sticky;
            font-size: 14px;
            top: 0;
        }

        thead tr {
            background-color: #076803;
            color: #fff;
            text-transform: uppercase;
        }

        thead tr th:first-child {
            border-radius: 1rem 0 0 0;
        }

        thead tr th:last-child {
            border-radius: 0 1rem 0 0;
        }

        tbody {
            font-size: small;
            overflow: scroll;
        }

        tbody tr:hover {
            background-color: #032102 !important;
            color: #f1f1f1;
            transition: 400ms;
        }

        tbody tr:hover a {
            color: #f1f1f1;
            transition: 600ms;
        }

        tbody tr:nth-child(even) {
            background-color: #8e8e8e;
        }

        tbody tr:nth-child(odd) {
            background-color: #dbdbdb;
        } */

        table {
            border-collapse: collapse;
            width: 100%;
            overflow: scroll;
        }

        thead {
            background: #229544;
            color: #ffffff;
            text-transform: uppercase;
            font-size: 12px;
        }

        thead tr th:first-child {
            border-radius: 12px 0 0 0;
            border: none;
        }

        thead tr th:last-child {
            border-radius: 0 12px 0 0;
            border: none;
        }

        table {
            border-collapse: collapse;
            font-size: 12px;
            font-weight: bold;
        }

        td:first-child,
        th {
            text-align: center;
            padding: 8px;
        }

        td {
            text-align: center;
            padding: 8px;
        }

        tr:has(input:checked) {
            background-color: #8B0000;
            color: #ffffff;
        }

        tr:nth-child(even) {
            background-color: #dddddd;
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #229554;
            position: sticky;
            width: 100%;
            top: 0;
            border-radius: 0 0 24px 24px;
        }

        .interacaoes {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .bi {
            color: #fff;
        }

        .logo {
            width: 250px;
            position: absolute;
            top: -4px;
            left: 2px;
            object-fit: cover;
        }

        .button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0000004e;
            width: 50px;
            height: 45px;
            border-radius: 12px;
            cursor: pointer;
        }

        .button:hover {
            scale: 0.95;
            box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.101);
        }

        .foto {
            width: 50px;
            border-radius: 50%;
            margin-top: 5px;
            margin-right: 10px;
            border: solid 2px #f7f0f0;
            object-fit: cover;
        }

        .drawer {
            display: none;
            flex-direction: column;
            right: 0;
            z-index: 9999;
            position: fixed;
            width: 350px;
            background: #000000e8;
            box-shadow: 4px 8px 12px 12000px rgba(0, 0, 0, 0.382);
            height: 100vh;
            animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
            color: #fff;
        }

        @keyframes slide-left {
            0% {
                transform: translateX(350px);
            }

            100% {
                transform: translateX(0);
            }
        }

        .close-drawer {
            color: #000000e8;
            margin-top: 10px;
            margin-left: 10px;
            font-size: 22px;
            height: 30px;
            width: 30px;
            border-radius: 50%;
            background: #ffffff74;
            animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) backwards;
            font-weight: bold;
        }

        .card {
            max-width: fit-content;
            width: 91vw;
            max-height: 40rem;
            margin: 2rem;
            padding: 1.2rem;
            background-color: #fff;
            border-radius: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .cardPersonalizado {
            max-width: 95vw;
            width: 91vw;
            max-height: 40rem;
            margin: 2rem;
            padding: 1.2rem;
            background-color: #fff;
            border-radius: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            overflow: auto;
        }

        .img_user {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .navbar {
            overflow: hidden;
            background-color: #389335;
            padding: 15px;
            color: #fff;
            text-align: center;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .profile-info {
            display: flex;
            align-items: center;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #333;
            min-width: 160px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .dropdown-content a {
            color: #fff;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .sidenav {
            height: 100vh;
            width: 0;
            position: fixed;
            top: 0;
            left: 0;
            background-color: #333333f3;
            overflow-x: hidden;
            transition: 0.5s;
            padding: 0;
        }

        .sidenav a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            color: #333;
        }

        .sidenav .closebtn {
            position: absolute;
            top: 0;
            right: 3%;
            font-size: 1.5rem;
            cursor: pointer;
            color: #f1f1f1;
        }

        .sidenav .cardPersonalizado {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 7rem;
            height: 7rem;
            background-color: #f1f1f1;
            margin: auto;
            padding: 0.1rem;
            border-radius: 0.5rem;
            font-weight: 700;
        }

        .sidenav .cardPersonalizado:hover {
            scale: 0.9;
            color: #389335;
            background-color: #dedcdc;
            transition: 400ms;
        }

        .open {
            width: 20rem;
            padding: 0.6rem;
        }

        .link-modal-solides {
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-align: center;
            color: #333;
            font-size: large;
            font-weight: 600;
            padding: 0.5rem;
        }

        #modal-backdrop {
            background-color: #0000005e;
        }

        .modal-background {
            background: #fff;
            max-width: 60rem;
            max-height: 80vh;
            margin: 2rem auto;
            padding: 2rem;
            border-radius: 8px;
            position: relative;
            overflow-y: auto;
            /* Alterado para 'auto' para permitir rolagem quando necessário */
        }

        .modalContent {
            display: grid;
            flex-direction: column;
            gap: 1rem;
            grid-template-columns: repeat(2, 1fr);
        }

        .modalContent::-webkit-scrollbar {
            width: 0.5rem;
            height: 0.5rem;
            /* Largura e altura da barra de rolagem */
        }

        .modalContent::-webkit-scrollbar-thumb {
            background-color: #045808;
            border-radius: 1rem;
            /* Cor da barra de rolagem */
        }

        .modalContent::-webkit-scrollbar-track {
            background-color: #f0f0f0;
            /* Cor do fundo da barra de rolagem */
        }

        .modalContent label {
            width: 100%;
            font-weight: 700;
            text-transform: uppercase;
        }

        .modalContent input,
        .modalContent select {
            width: calc(100% - 20px);
            padding: 10px;
            border-radius: 0.7rem;
            border: 1px solid #333;
            box-sizing: border-box;
            font-weight: 500;
            outline: none;
            transition: 400ms;
        }

        .modalContent input:focus,
        .modalContent select:focus {
            font-weight: 600;
            font-size: 14px;
        }

        .modalContent select {
            padding: 0;
        }

        .modalContent button {
            width: 100%;
            color: #fff;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .divider {
            width: 100%;
            height: 1px;
            background-color: #ccc;
            margin: 20px 0;
            /* Ajuste conforme necessário */
        }

        .modal-solides {
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

        #closeModal {
            position: relative;
            font-size: 26px !important;
            font-weight: 600;
            bottom: 25px;
            color: #9b9b9b;
        }

        #demitirFunc {
            background-color: #d98210;
        }

        #cancelar-demissao {
            background-color: #8e0404;
        }

        #recontratarFunc {
            background-color: #270684;
        }

        #alterarDados {
            background-color: #068469;
        }

        #closeModal:hover {
            color: #353535;
        }

        #demitirFunc:hover {
            background-color: #f3b413;
        }

        #cancelar-demissao:hover {
            background-color: #e80c0c;
        }

        #recontratarFunc:hover {
            background-color: #4b11ec;
        }

        #alterarDados:hover {
            background-color: #0ab993;
        }

        #recontratarFunc[disabled] {
            background-color: #a79dc1;
        }

        #alterarDados[disabled] {
            background-color: #95d0c2;
        }

        #demitirFunc[disabled] {
            background-color: #dbc58e;
        }

        #formFiltros {
            overflow: hidden;
            width: 91vw;
            margin: 2rem;
            padding: 1.2rem;
            background-color: #fff;
            border-radius: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            grid-gap: 1rem;
        }

        #form-demitir {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 1rem;
        }

        #form-demitir label {
            margin-bottom: 1rem;
            font-weight: 600;
        }

        #exibi_status_solide {
            font-weight: 600;
            min-width: 100%;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0.5rem;
            display: flex;
            border: 1px solid #032102;
            border-radius: 0.4rem;
            background-color: #e7e7e8;
        }