/* styles/report_modal.css */

/* Overlay Latar Belakang Gelap */
.report-overlay {
    display: none; /* Sembunyi secara default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Lebih gelap agar fokus */
    z-index: 10005;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px); /* Efek blur estetik pada latar */
}

/* Kotak Konten Modal - Diseragamkan dengan .edit-box */
.report-box {
    width: 100%;
    max-width: 400px;
    background: var(--bg-card, #232323);
    border: var(--border-bold, 2px solid #333);
    padding: 30px;
    position: relative;
    margin: 20px; /* Jarak aman di layar HP */
}

/* Tombol Tutup (X) */
.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--text-muted, #888);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}

.close-modal-btn:hover {
    opacity: 1;
    color: white;
}

/* Judul Modal - Gaya Bold Alert tapi Rapi */
.report-box h2 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ff4444; /* Warna merah alert */
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Label Muted & Uppercase (Sama seperti halaman edit) */
.report-box label {
    display: block;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted, #888);
}

/* Gaya Input Select & Textarea (Seragam dengan tema global) */
.report-box select,
.report-box textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #444;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: var(--bg-main, #111);
    color: #fff;
    transition: 0.2s;
}

/* Fokus input menggunakan warna merah alert */
.report-box select:focus,
.report-box textarea:focus {
    outline: none;
    border-color: #ff4444;
}

.report-box textarea {
    resize: none;
    line-height: 1.5;
    min-height: 100px;
    overflow: hidden;
}

/* Tombol Kirim Laporan - Gaya Tombol Utama tapi Merah */
.btn-report {
    background: #ff4444; /* Merah Alert */
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    margin-top: 25px;
    text-transform: uppercase;
    transition: 0.2s;
    text-align: center;
    display: block;
}

.btn-report:hover {
    background: white;
    color: black;
}