.proshna-question-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 20px;
    color: #666;
}

.proshna-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1em;
    color: #666;
}

.proshna-action-btn:hover, .proshna-action-btn.active {
    color: #0073aa;
}
.proshna-like-btn.active {
    color: #e74c3c;
    font-weight: bold;
}
.proshna-view-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- NEW REPORT BUTTON STYLES --- */
.proshna-report-btn .dashicons-warning {
    color: #f59e0b; /* Warning/Amber color */
}

.proshna-report-btn:hover {
    color: #d97706; /* Darker amber */
}

/* Style for after a report is submitted */
.proshna-report-btn.reported {
    cursor: default;
    color: #d97706;
    opacity: 0.7;
}

/* ===================================================================
   NEW: Modern Report Modal Styles
   =================================================================== */

.proshna-report-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.proshna-report-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.proshna-report-modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.proshna-report-modal-overlay.active .proshna-report-modal-content {
    transform: scale(1);
}

.proshna-report-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.proshna-report-modal-header h3 {
    margin: 0;
    font-size: 1.4em;
    color: #111827;
}

.proshna-report-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #9ca3af;
    line-height: 1;
    padding: 0;
}
.proshna-report-modal-close:hover {
    color: #111827;
}

.proshna-report-modal-body textarea {
    width: 100%;
    height: 120px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1em;
    line-height: 1.5;
    resize: vertical;
    box-sizing: border-box; /* Important */
}
.proshna-report-modal-body textarea:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
    outline: none;
}

.proshna-report-modal-body .proshna-modal-error {
    color: #dc2626;
    font-size: 0.9em;
    margin-top: 5px;
    display: none; /* Hidden by default */
}

.proshna-report-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.proshna-report-modal-footer .proshna-modal-btn {
    padding: 10px 22px;
    font-size: 0.95em;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.proshna-modal-btn-cancel {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}
.proshna-modal-btn-cancel:hover {
    background-color: #e5e7eb;
}

.proshna-modal-btn-submit {
    background-color: #0073aa;
    color: #fff;
}
.proshna-modal-btn-submit:hover {
    background-color: #005a87;
}
.proshna-modal-btn-submit.processing {
    opacity: 0.7;
    cursor: wait;
}

/* --- Share Button & Dropdown Styling --- */
.proshna-share-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Override default action btn style for active state */
.proshna-share-toggle-btn.active {
    color: #0073aa;
}

.proshna-share-dropdown {
    display: none;
    position: absolute;
    bottom: 130%; /* Show above the button */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-radius: 8px;
    width: 160px;
    z-index: 100;
    padding: 6px;
    flex-direction: column;
}

.proshna-share-dropdown.show {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

/* Arrow for the tooltip */
.proshna-share-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}
.proshna-share-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -7px;
    border-width: 7px;
    border-style: solid;
    border-color: #e5e7eb transparent transparent transparent;
}

.proshna-share-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: #374151;
    text-decoration: none;
    font-size: 13px;
    border-radius: 4px;
    transition: background 0.1s;
}

.proshna-share-item:hover {
    background-color: #f3f4f6;
    color: #0073aa;
}

.proshna-share-item .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #6b7280;
}
.proshna-share-item:hover .dashicons {
    color: #0073aa;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 5px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* ... আপনার আগের কোডের নিচে যুক্ত করুন ... */

/* Custom X Icon Styling to match Dashicons */
.proshna-icon-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;       /* Dashicon এর সমান উইডথ */
    height: 16px;      /* Dashicon এর সমান হাইট */
    color: #6b7280;    /* ডিফল্ট আইকন কালার */
    line-height: 1;
}

.proshna-icon-x svg {
    width: 14px;       /* আইকনের সাইজ */
    height: 14px;
    fill: currentColor; /* টেক্সট কালার ইনহেরিট করবে */
}

/* হোভার করলে কালার পরিবর্তন */
.proshna-share-item:hover .proshna-icon-x {
    color: #0073aa;
}