.vermelho {
    color: #F27474;
}

#labelRevisaoAtual, #labelRevisaoDB {
    background-color: initial;
    color: initial;
    border: initial;
}

#labelRevisaoAtual:hover, #labelRevisaoDB:hover {
    background-color: initial;
    color: initial;
    cursor: default;
    border: initial;
}

body {
    font-family: Arial, sans-serif;
    margin: 20px !important;
    position: relative;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

#loading.active {
    visibility: visible;
    opacity: 1;
}

#loading div {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#result {
    margin-top: 20px;
}

#labels {
    margin-top: 20px;
}

label {
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

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

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

.custom-swal-button {
    background-color: rgba(0, 123, 255, 0.8);
    border: none;
    color: #fff;
    opacity: 0.8;
}

.custom-swal-ok-button {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
    box-shadow: none !important;
}

.custom-swal-ok-button:hover {
    background-color: rgba(40, 167, 69, 0.8) !important;
    border-color: rgba(40, 167, 69, 0.8) !important;
}

.label-fixed {
    top: 0;
    right: 0;
    margin: 1rem;
    display: flex;
    gap: 1.5rem;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    color: #212529;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.table-container {
    width: 100%;
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 1);
    font-family: Arial, sans-serif;
}

table.dataTable thead {
    background-color: #333 !important;
    color: #fff !important;
}

table.dataTable thead th:hover {
    background-color: #444 !important;
}

table.dataTable td, table.dataTable th {
    border-left: none;
    border-right: none;
    border: none !important;
}

table.dataTable {
    border-collapse: collapse;
}

table.dataTable thead th, table.dataTable tbody td {
    border-top: none;
    border-bottom: none;
}

table.dataTable thead th:first-child {
    pointer-events: none;
}

.lista-itens {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.lista-itens li {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.lista-itens li:hover {
    background-color: #f0f0f0;
}

.list-group-item {
    cursor: pointer;
    transition: background-color 0.3s;
}

.list-group-item:hover {
    background-color: #495057;
}

table.dataTable th:nth-child(1).sorting::after, 
table.dataTable th:nth-child(1).sorting_asc::after, 
table.dataTable th:nth-child(1).sorting_desc::after {
    content: '' !important;
}

table.dataTable th:nth-child(1).sorting::before, 
table.dataTable th:nth-child(1).sorting_asc::before, 
table.dataTable th:nth-child(1).sorting_desc::before {
    content: '' !important;
}

.invisible {
    visibility: hidden;
}

.dataTables_length select:focus {
    background-color: #fff !important;
    color: #000 !important;
}

.dataTables_length {
    display: inline-block;
    margin-right: 10px;
}

.text-nowrap {
    width: 1px;
    white-space: nowrap;
}

#divSituacaoBtn, #divDesenvolvedorBtn {
    position: relative;
    width: 250px;
}

#divDesenvolvedor, #divSituacao {
    position: absolute;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    overflow-y: auto;
    top: 100%;
    left: 0;
    margin-top: 5px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 250px !important;
}