/* সাথী সিলেবাস পেজের জন্য এক্সক্লুসিভ নীল থিম */

.content-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 15px;
}

.library-title-box {
    background: linear-gradient(135deg, #01579b, #0288d1);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-bottom: 4px solid #ffd700;
}

.category-header h2 {
    background: #01579b; /* সাথী সিলেবাসের নীল থিম */
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 17px;
    display: inline-block;
    border-left: 6px solid #ffd700;
    margin: 40px 0 15px;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

/* Book Card */
.book-card {
    background: #ffffff; 
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-bottom: 6px solid #01579b; /* নীল বর্ডার */
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.book-card:hover {
    z-index: 99; 
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.book-image-area {
    background: #f9f9f9;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.book-pic { max-height: 100%; border-radius: 4px; }

.book-info {
    padding: 20px 15px;
    text-align: center;
}

.book-name { font-size: 19px; color: #01579b; font-weight: bold; margin-bottom: 5px; }
.writer-name { font-size: 13px; color: #666; font-style: italic; margin-bottom: 15px; display: block; }

.stock-info-container {
    background: #e3f2fd;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
}
.stock-row { display: flex; justify-content: space-between; font-size: 12px; font-weight: bold; color: #01579b; }
.stock-out { color: #d32f2f; }

/* Tracker Box - সেন্টারে আনার জন্য ফিক্সড */
.tracker-box {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 12px;
    margin: 0 auto 15px; /* auto মার্জিন দিয়ে মাঝখানে রাখা হয়েছে */
    border: 1px solid #eee;
    width: 90%; /* কার্ডের ভেতরে সুন্দর দেখানোর জন্য */
    box-sizing: border-box;
    text-align: center;
}

.track-title { font-size: 10px; color: #d32f2f; font-weight: bold; display: block; margin-bottom: 4px; }
.holder-name { font-size: 13px; color: #333; font-weight: bold; margin: 0 0 5px 0; }

.more-holders {
    position: relative;
    display: inline-block;
}

.more-btn-v2 {
    background: #fff;
    border: 1.5px solid #01579b;
    color: #01579b;
    padding: 3px 18px;
    border-radius: 20px;
    font-size: 11px;
    cursor: pointer;
    font-weight: bold;
}

.dropdown-list {
    display: none;
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: #263238;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
}

.more-holders:hover .dropdown-list { display: block; }

/* Collect Button - নীল গ্র্যাডিয়েন্ট */
.collect-btn {
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    text-align: center;
    transition: 0.3s;
}

.sathi-collect {
    background: linear-gradient(to right, #01579b, #0288d1);
    color: white;
}

.sathi-collect:hover {
    background: linear-gradient(to right, #0288d1, #29b6f6);
    transform: scale(1.03);
}

/* Footer */
.footer {
    background: #01579b;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
    border-top: 5px solid #ffd700;
}