/* Report System Styles */

.report-btn {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}

.report-btn:hover svg {
    opacity: 1;
}

.report-content {
}

.report-content .loader {
    margin: 50px auto;
}

.report-reasons {
    margin-bottom: 20px;
    max-height: 330px;
}

.report-reason-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.report-reason-item .fee {
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.report-reason-item input[type="radio"]:checked + .fee span:first-child {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.submit-report-btn {
    width: 100%;
    transition: all 0.3s ease;
}

.submit-report-btn:disabled,
.submit-user-report-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.error-message {
    color: var(--error-color, #ea4335);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

.reported-mess {
    color: var(--accent-color);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.reported-mess span {
    color: var(--text-primary);
    text-decoration: underline;
    cursor: pointer;
    margin-left: 8px;
}

.contmoderation svg path {
    stroke: #ffc071;
}

.post-bt .report-btn {
    margin-left: auto;
}

/* Report Modal Specific Styles */
#reportmodal .pop-modal-content {
    max-width: 450px;
    top: 0;
    max-height: max-content;
    border-radius: 40px;
    margin: auto;
    padding: 5px 20px 21px;
}

/* User Status and Moderation Styles */
.user-status-message {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.user-action-buttons {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    align-items: center;
}

.user-action-buttons .t-btn {
    flex: 1;
}


/* Remove unwanted hover effects */
.fdm-checktw .fee:hover {
    background: none !important;
}
