#logo {
    width: 70px;
    height: auto;
    margin-bottom: 15px;
}

.titulo {
    text-align: center;
    color: black;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    padding: 100px;
    body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.table-container {
    height: 500px;
    background-color: #fff;
    overflow-y: auto;
    position: relative;
    border: 2px solid #171717;
    border-radius: 10px;
    width: 80%;
    margin: 0 auto 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    
}

/* Adicione isto ao seu CSS existente */
#tableContainer {
    position: relative;
    min-height: 100px;
}

#loadingMessage {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 1.1rem;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
    z-index: 100;
    animation: fadeIn 0.3s ease-out;
}

#loadingMessage:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232c3e50"><path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8zm1-13h-2v6h2V7zm0 8h-2v2h2v-2z"/></svg>') no-repeat center;
    background-size: contain;
}

#dots {
    animation: pulseDots 1.5s infinite;
    display: inline-block;
    width: 20px;
    text-align: left;
}

@keyframes pulseDots {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Para dispositivos móveis */
@media (max-width: 768px) {
    #loadingMessage {
        padding: 12px 24px;
        font-size: 1rem;
        width: 80%;
        text-align: center;
    }
    
    #loadingMessage:before {
        width: 18px;
        height: 18px;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 2px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    position: relative;
}

th.bold {
    font-weight: bold;
}

.sort-buttons {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
}

.sort-buttons button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 12px;
    padding: 0;
    margin: 2px 0;
}

form {
    margin-bottom: 20px;
    text-align: center;
}

.col1 { width: 90px; }
.col2 { width: 460px; }
.col3 { width: 450px; }
.col4 { width: 100px; }
.col5 { width: 10px; }
.col6 { width: 100px; }
.col7 { width: 80px; }
.col8 { width: 100px; }
.col9 { width: 40px; }
.col10 { width: 40px; }
.col11 { width: 100px; }
.col12 { width: 200px; }
.col13 { width: 40px; }
.col14 { width: 60px; }
.duplicate {
    background-color: #ffcccc;
}

.sticky-top {
    position: sticky;
    top: 0;
    background: #ccc;
    z-index: 10;
    border: 2px solid #ccc;
    color: #333;
}

.sticky-bottom {
    position: sticky;
    bottom: 0;
    background: #ccc;
    z-index: 10;
    border: 2px solid #ccc;
}

.file-container {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
background-color: #eaeaea;
position: relative;
border: 2px dashed #999;
padding: 20px;
text-align: center;
cursor: pointer;
margin-bottom: 20px;
border-radius: 10px;
width: 78%;
margin: 0 auto;
}

.file-container.highlight {
background-color: #b3e5fc; /* Nova cor quando o arquivo é arrastado */
border-color: #0288d1; /* Cor da borda quando o arquivo é arrastado */
}

.file-container:hover {
background-color: #d9fbe5;
}

#fileLabel {
    font-size: 16px;
}

#inputFile {
    display: none;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

.info-container {
    text-align: left;
    margin-top: 20px;
    width: 78%; /* Mesma largura do container principal */
    margin: 0 auto; /* Centraliza horizontalmente */
    border: 2px solid #171717;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.info-container h2 {
    text-align: center;
    margin-bottom: 0px;
}

.info-container ul {
    padding-left: 20px;
    width: 78%; /* Mesma largura do container principal */

}

footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.tipo-ocorrencia {
cursor: pointer;
}

.tipo-ocorrencia:hover {
    color: blue;
    }

.procuradores-lista {
    color: blue;
}

.procurador-nome {
cursor: pointer;
color: black;
}
.procurador-nome:hover {
color: blue;
}
.processos-lista {
list-style-type: circle;
margin-left: 20px;
padding-left: 10px;
color: blue;

}

.btn-buscar {
    border: none;
    background-color: white;
    margin-left: 0.5px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s ease;
    filter: grayscale(100%);
}

        .monitoramento-container {
            margin: 20px 0;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #f9f9f9;
        }
        
        #listaNomesMonitorados {
            margin: 10px 0;
            max-height: 150px;
            overflow-y: auto;
            border: 1px solid #ddd;
            padding: 5px;
        }
        
        #listaNomesMonitorados li {
            display: flex;
            justify-content: space-between;
            padding: 5px;
            border-bottom: 1px solid #eee;
        }
        
        #listaNomesMonitorados li:last-child {
            border-bottom: none;
        }
        
        .btn-remover {
            background-color: #ff6b6b;
            color: white;
            border: none;
            border-radius: 3px;
            cursor: pointer;
        }
        
        .alerta-nome {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #ff4444;
            color: white;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            z-index: 1000;
            display: none;
        }
     