﻿.highlighted-post-btn {
    background-color: #ffc107; /* زرد طلایی */
    color: #001f3f; /* سرمه‌ای تیره */
    border: 2px solid #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

    .highlighted-post-btn:hover {
        background-color: #fff;
        color: #001f3f;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
        text-decoration: none;
    }



.book-list-scrollable {
    max-height: 600px;
    overflow-y: auto;
    padding: 0 10px;
    direction: rtl; /* اضافه برای راست‌چین‌کردن */
}

    /* استایل اسکرول */
    .book-list-scrollable::-webkit-scrollbar {
        width: 6px;
    }

    .book-list-scrollable::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 8px;
    }

    .book-list-scrollable::-webkit-scrollbar-track {
        background-color: #f1f1f1;
    }