/* Styles for the modal container */
#report-modal {
    display: none;
    position: fixed!important;
    top: 0;
    left: 0;
    width: 100%;
    max-width:none!important;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 11111!important; /* Higher than overlay */
}

/* Styles for the modal content */
.modal-content {
    background-color: #182335;
    margin: 15% auto;
    padding: 1.25rem;
    width: 80%;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

#issueType {
    width: 100%;
    padding: 0.5rem;
    border: 0.0625rem solid #ced4da;
    border-radius: 0.25rem;
    line-height: 1.5;
    color: #495057;
}

#reportForm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none!important;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 11110!important; /* Ensure it's above other content */
    cursor: pointer;
}

#reportFormSubmit {
    border-radius: 0.25rem;
    background-color: #f03e3e;
    color: #fff; /* Text color */
    padding: 0.625rem 1.25rem; /* Adjust padding as needed */
    border: none; /* Remove border if needed */
    cursor: pointer; /* Add pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

/* new style */
.report-title {font-size: 1.125rem; font-weight 700; color:#f03e3e;}
