/* استایل‌های اختصاصی جدول جلسات، هشتگ‌ها و بهینه‌سازی موبایل */
.session-title-box { 
    text-align: right; 
}
.session-title { 
    font-weight: bold; 
    font-size: 15px; 
    color: #2c3e50; 
}
.session-one-liner { 
    font-size: 12px; 
    color: #666; 
    margin-top: 4px; 
    line-height: 1.6; 
}
.hashtag-wrapper { 
    margin-top: 6px; 
}
.hashtag-badge {
    display: inline-block;
    background-color: #f0f4f8;
    color: #3a34b0;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    margin-left: 3px;
    margin-bottom: 3px;
    border: 1px solid #d6e2f0;
    font-weight: 500;
}
.session-details-box {
    background: #fdfdfd;
    border-right: 4px solid #3a34b0;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 4px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.03);
    text-align: right;
}
.session-details-box h5 {
    color: #3a34b0;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
}
.session-details-box p { 
    font-size: 13px; 
    line-height: 1.8; 
    color: #444; 
    margin-bottom: 10px; 
    text-align: justify;
}
.session-details-box ul { 
    padding-right: 20px; 
    margin-bottom: 0; 
}
.session-details-box li { 
    font-size: 13px; 
    color: #555; 
    line-height: 1.8; 
    margin-bottom: 4px; 
}

/* کلیک‌پذیر شدن کل ردیف */
tr.clickable-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}
tr.clickable-row:hover {
    background-color: #f1f5f9 !important;
}

/* دکمه اختصاصی توضیحات */
.btn-details-toggle {
    background-color: #17a2b8;
    color: #ffffff !important;
    border: none;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    white-space: nowrap;
}
.btn-details-toggle:hover, .btn-details-toggle:focus {
    background-color: #138496;
    color: #ffffff !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    outline: none;
}
.btn-details-toggle i {
    margin-left: 4px;
}

/* بهینه‌سازی‌های ویژه موبایل (نمایش خوانا و بدون اسکرول افقی/طولانی) */
@media (max-width: 767px) {
    .session-title {
        font-size: 13.5px;
    }
    .session-one-liner {
        font-size: 11.5px;
        line-height: 1.5;
        color: #555;
        text-align: justify;
    }
    .hashtag-badge {
        font-size: 10px;
        padding: 1px 6px;
    }
    .session-details-box {
        padding: 10px 12px;
        border-right-width: 3px;
        margin: 5px 0;
    }
    .session-details-box h5 {
        font-size: 12.5px;
    }
    .session-details-box p, 
    .session-details-box li {
        font-size: 11.5px;
        line-height: 1.7;
    }
    .session-details-box ul {
        padding-right: 15px;
    }
    .btn-details-toggle {
        font-size: 10.5px;
        padding: 4px 8px;
    }
}