/* Floating button */
.bug-report-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 12px 18px;
    background: #ff4747;
    border: none;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
    z-index: 3000;
}

/* Modal overlay */
.bug-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 4000;
}

/* Modal box */
.bug-modal-content {
    background: #fff;
    padding: 20px;
    width: 420px;
    max-width: 90%;
    border-radius: 8px;
}

.bug-modal-content h2 {
    margin-top: 0;
}

.bug-modal-content textarea {
    width: 100%;
    height: 140px;
    margin-bottom: 10px;
    font-size: 14px;
}

.btn {
    background: #1492d1;
    padding: 8px 14px;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.cancel-btn {
    background: #555;
    margin-left: 5px;
}

#bug-status {
    margin-top: 8px;
    font-size: 14px;
}
