/* Reset e cores base */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Container principal */
#container {
    height: auto;
}

/* Container centralizado */
#consultaForm,
#message,
#pdfViewer {
    margin: 20px auto;
}

/* Título principal */
#titulo {
    text-align: center;
    color: #005b96;
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px !important;
    margin-bottom: 0px !important;
}

/* Formulário */
#consultaForm {
    background-color: #f4f7f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px 20px;
    align-items: center;
}

#consultaForm label {
    font-weight: 600;
    text-align: right;
}

#consultaForm input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

#consultaForm select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
}

#consultaForm button {
    width: 100%;
    padding: 10px;
    background-color: #005b96;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

#consultaForm button:hover {
    background-color: #004977;
}

#consultaForm .btn-secundario {
    background-color: #0b6a8f;
}

#consultaForm .btn-secundario:hover {
    background-color: #095876;
}

.acoes-formulario {
    grid-column: 1 / -1;
}

.botao-divider {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    color: #6b7280;
    margin: 8px 0;
}

.botao-divider::before,
.botao-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #cbd5e1;
}

.botao-divider span {
    padding: 0 10px;
}

/* Mensagem informativa */
.info-message {
    grid-column: 1 / -1;
    background-color: #e8f4f8;
    border: 1px solid #bee5eb;
    border-radius: 4px;
    padding: 12px;
    margin: 5px 0;
}

.info-message p {
    margin: 0;
    font-size: 14px;
    color: #0c5460;
    text-align: center;
    font-style: italic;
}

/* Mensagem de erro */
#message {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: red;
}

/* Visualização do PDF */
#pdfViewer {
    background-color: #f4f7f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#pdfViewer iframe {
    width: 100%;
    height: 1200px;
    border: none;
    border-radius: 4px;
}

#pdfViewer a {
    display: inline-block;
    margin-top: 15px;
    color: #005b96;
    text-decoration: none;
    font-weight: 600;
}

#pdfViewer a:hover {
    text-decoration: underline;
}
