* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background-color: #1f2029;
    font-family: 'Arial', sans-serif;
}

.search-container {
    position: relative;
    width: 30%;
    margin-top: 10px;
    margin-bottom: 40px;
}

.search-container input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #007bff;
    background-color: #1f2029;
    color: #ffffff;
    border-radius: 25px;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
}

.search-container label {
    position: absolute;
    top: -10px;  /* Levanta o nome acima da borda */
    left: 15px;
    background-color: #1f2029;
    padding: 0 8px;
    color: #007bff;
    font-size: 14px;
    font-weight: bold;
}

.search-container input:focus {
    border-color: #0056b3;
}

table {
    width: 300px;
    border-collapse: collapse;
    margin-bottom: 20px; /* Espaçamento entre tabelas */
}

th, td {
    border: 2px solid #007bff;
    text-align: center;
    padding: 8px;
}

th {
    background-color: #007bff;
    color: white;
}

td {
    background-color: #e8f0fe;
}

.pdf-btn {
    margin-top: 10px; /* Espaço acima do botão */
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007BFF; /* Cor azul */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pdf-btn:hover {
    background-color: #0056b3; /* Cor azul mais escura no hover */
}
