.bf-report-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border: none;
    background: transparent;
    color: #999;
    font-size: 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.bf-report-btn:hover {
    background: #f8f9fa;
    color: #dc3545;
}

.bf-report-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.bf-report-modal.active {
    display: flex;
}

.bf-report-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.bf-report-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    overflow: hidden;
}

.bf-report-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.bf-report-modal-header h3 {
    margin: 0;
    font-size: 18px;
}

.bf-report-modal-close {
    border: none;
    background: transparent;
    color: #999;
    font-size: 20px;
    cursor: pointer;
}

.bf-report-modal-body {
    padding: 20px;
}

.bf-report-modal .form-group {
    margin-bottom: 16px;
}

.bf-report-modal .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.bf-report-modal .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-size: 14px;
}

.report-reasons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.report-reason-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.report-reason-item:hover {
    border-color: #dc3545;
    color: #dc3545;
}

.report-reason-item input[type="radio"] {
    display: none;
}

.report-reason-item input[type="radio"]:checked + span {
    color: #dc3545;
}