/* ===== FORMULÁRIOS ===== */
.add-problema-form {
    max-width: 600px;
    background: #fff;
    padding: 25px 28px;
    border-radius: 10px;
    box-shadow: 0 2px 10px #0001;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.add-problema-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.add-problema-form label {
    font-weight: 600;
    color: #133968;
    font-size: 0.95em;
}

.add-problema-form input[type="text"],
.add-problema-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    transition: border 0.2s, box-shadow 0.2s;
    width: 100%;
    resize: vertical;
    background: #fafafa;
}

.add-problema-form input[type="text"]:focus,
.add-problema-form textarea:focus {
    border: 1px solid #2196f3;
    outline: none;
    background: #fff;
    box-shadow: 0 0 5px #2196f333;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 10px;
}

/* ===== DROP AREA ===== */
.drop-area {
    border: 2px dashed #2196f3;
    padding: 20px;
    text-align: center;
    background: #f6fbff;
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s;
}
.drop-area:hover,
.drop-area.dragover {
    background: #eaf5ff;
    border-color: #0c7cd5;
}
.img-preview {
    max-width: 220px;
    display: none;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===== BOTÃO UPLOAD ===== */
#btn-upload {
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    background: linear-gradient(90deg, #2196f3 40%, #3ee4fa 100%);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.2s;
    display: inline-block;
}
#btn-upload:hover {
    background: #1767b3;
    color: #eaf9ff;
    transform: translateY(-1px);
}

/* Ajuste dos botões */
.add-problema-form .btn {
    padding: 8px 22px;
    font-size: 0.95em;
}
