.report-overlay {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    display: none;

    justify-content: center;
    align-items: center;
    transition: opacity .25s ease, visibility .25s ease;
    background: rgba(0,0,0,0.5);
    z-index: 999999;
    padding-inline: 30px;
}

.report-overlay.active {
    display: flex;
}

.report-box {
    width: 100%;
    max-width: 520px;
    background: white;
    padding: 20px;
    border-radius: 15px;
}

.report-box h3 {
    margin-bottom: 15px;
}

.report-box select,
.report-box textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.report-actions {
    display: flex;
    justify-content: space-between;
}

.btn-submit {
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-cancel {
    background: #ccc;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: black;
}

.btn-cancel:hover {
    background-color: #bdbcbc;
}

button, h3 {
    text-align: center;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}


@media (max-width: 400px) {
    .report-box {
        padding: 15px;
    }
}

@media (max-width: 600px) {

    .report-box {
        width: 100%;
        border-radius: 16px;
    }
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0.8;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}