/* Estilos específicos para upload.php */

/* Cabeçalho */
section.content header h2 {
    color: #004080;
    margin-bottom: 20px;
    font-size: 1.4em;
}

/* Formulário */
.form-doc {
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 6px;
    max-width: 600px;
    margin: 0 auto;
}

.form-doc label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.form-doc input[type="text"],
.form-doc input[type="file"],
.form-doc textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 0.95em;
    background: #fff;
}

.form-doc textarea {
    resize: vertical;
}

/* Botões */
.doc-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.doc-actions .btn {
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease-in-out;
}

/* Botão primário */
.btn.btn-primary {
    background: #004080;
    color: #fff;
    border: none;
}

.btn.btn-primary:hover {
    background: #0066cc;
}

/* Botão secundário */
.btn.btn-secondary {
    background: #666;
    color: #fff;
    border: none;
}

.btn.btn-secondary:hover {
    background: #444;
}

/* Alertas */
.alert {
    padding: 10px;
    margin: 15px 0;
    border-radius: 4px;
    font-weight: bold;
}

.alert.success {
    background: #e6ffe6;
    border: 1px solid #33cc33;
    color: #006600;
}

.alert.error {
    background: #ffe6e6;
    border: 1px solid #cc0000;
    color: #990000;
}
