.chapter-report-modal-btn{
    background-color: rgb(217 44 44);
    color: #f1f1f1;
    border-radius: 10px;
    height: 2.7em;
    width: 4.2em;
    border-bottom: 2px solid #f1f1f1;
}

.report-chapter-modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 300px;
    width: fit-content;
    max-width: 90vw;
    max-height: 90vh;
    background-color: #1e1e1e; /* Dark background for a forum look */
    z-index: 9000;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    overflow-y: auto;

    border-bottom: 2px solid #22A7F0;
}

.report-chapter-modal p{
    margin: 0 0 0.5em;
    padding: 0 !important;
    color: white;
}

.report-chapter-modal label{
    margin-bottom: 0;
}

.report-chapter-modal select, text-area{
    width: 100%;
}

.report-chapter-modal-header{
    font-size: 1.2em !important;
    margin-bottom: 1em;
}

.wpcf7-response-output{
    margin: 0em 0em 1em !important;
}

.wpcf7-submit{
    background-color: #22A7F0 !important;
    color: white !important;
}

.report-chapter-modal::backdrop {
    backdrop-filter: blur(5px);
}

.report-chapter-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.6); /* optional tint */
    z-index: 8000;
}