/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    width: 40%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 1px;
    color: white;
}

/* Modal Content */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    color: black;
}

/* Textarea */
#report-error-input {
    width: 100%;
    height: 80px;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Modal Buttons */
.modal-buttons {
    margin-top: 10px;
    text-align: right;
}

.modal-buttons button {
    padding: 8px 16px;
    margin-left: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#submit-report-btn {
    background-color: #4CAF50;
    color: white;
}

.modal-buttons button:hover {
    opacity: 0.8;
}
