﻿.ocorrencia-container {
    width: 60%;
    margin: 30px auto;
    background-color: #fff;
    border: 2px solid #89A7B1;
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #3A415A;
}

label {
    font-weight: 600;
    color: #566981;
}

textarea, input[type="text"], input[type="file"] {
    width: 100%;
    border: 1.5px solid #89A7B1;
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    color: #3A415A;
    background-color: #F8FAFA;
    outline: none;
}

    textarea:focus, input:focus {
        border-color: #566981;
        box-shadow: 0 0 4px rgba(86, 105, 129, 0.3);
    }

#map {
    width: 100%;
    height: 180px;
    border: 1.5px solid #89A7B1;
    border-radius: 6px;
    margin-bottom: 20px;
}

.upload-box {
    border: 1.5px dashed #89A7B1;
    border-radius: 6px;
    background-color: #F8FAFA;
    padding: 20px;
    text-align: center;
    color: #566981;
    margin-bottom: 20px;
}

.options {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.btn-enviar {
    display: block;
    width: 100%;
    background-color: #3A415A;
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.3s;
}

    .btn-enviar:hover {
        background-color: #566981;
    }

.file-item {
    padding: 5px;
    border-left: 3px solid #89A7B1;
    margin: 5px 0;
    background-color: #F8FAFA;
    font-size: 13px;
}

#filePreview {
    max-height: 150px;
    overflow-y: auto;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.btn-enviar:disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

    .btn-enviar:disabled:hover {
        background-color: #6c757d !important;
    }
