/* ============================================
   ESTILOS DO PAINEL ADMINISTRATIVO
   ============================================ */

/* Painel Administrativo */
.admin-panel {
    display: none;
    margin-top: 30px;
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.admin-panel.active {
    display: block;
}

.admin-panel h2 {
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.admin-panel h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    text-align: left;
    font-size: 16px;
}

/* Inputs e selects */
input,
select {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    width: 100%;
    font-family: inherit;
    font-size: 14px;
}

input:focus,
select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 4px rgba(52, 152, 219, 0.3);
}

/* Inputs de tipo file */
input[type="file"] {
    padding: 6px;
    cursor: pointer;
}

/* Botões padrão */
button {
    font-family: inherit;
    padding: 10px 16px;
    background-color: #34495e;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 14px;
}

button:hover {
    background-color: #2c3e50;
}

button:active {
    transform: scale(0.98);
}

/* Estilos de reportbox (relatório) */
.report-box {
    margin-top: 30px;
    background-color: #fefefe;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    width: 100%;
    max-width: 800px;
    display: none;
}

.report-box.active {
    display: block;
}

.report-box pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #2c3e50;
    background-color: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    overflow-x: auto;
}