/* ===== BUG REPORT MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.modal-content {
    background: #1e3a1a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 20px;
    width: 360px;
    max-width: 90vw;
}

.modal-title {
    font-size: 1rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.report-game-label {
    font-family: monospace;
    font-size: 0.8rem;
    color: #d4af37;
    margin-bottom: 10px;
}

#report-message {
    width: 100%;
    background: #1a1a1a;
    color: #ddd;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 8px;
    font-family: inherit;
    font-size: 0.85rem;
    resize: vertical;
}
#report-message:focus { outline: 1px solid #d4af37; border-color: #d4af37; }

.modal-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 10px;
}

.modal-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 4px;
}
.modal-btn.cancel {
    background: #4a4a4a;
    color: #ddd;
}
.modal-btn.cancel:hover { background: #5a5a5a; }
.modal-btn.submit {
    background: #d4af37;
    color: #1a1a1a;
}

#report-status {
    font-size: 0.8rem;
    color: #a5d6a7;
    margin-top: 6px;
    text-align: center;
    min-height: 18px;
}
