/* Genel yapı - Koyu tema */
#main-sidebar {
    background: #1e1e2f;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    color: #eee;
}

#main-sidebar h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

/* Tab başlıkları - Dark */
.nav-tabs .nav-link {
    font-weight: 500;
    color: #ccc;
    border: none;
    background: #2c2c3b;
    margin-right: 5px;
    border-radius: 5px 5px 0 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: #007bff;
    color: #fff;
}

/* Manga listesi - Koyu */
.manga-list-tab {
    list-style: none;
    padding: 0;
    margin: 0;
}

.manga-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
    padding: 10px 0;
    transition: background-color 0.2s ease;
}

.manga-item:hover {
    background-color: #2b2b3a;
}

.manga-item .rank {
    font-size: 18px;
    font-weight: bold;
    color: #61dafb;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.manga-item .thumb img {
    width: 60px;
    height: 90px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
    border: 2px solid #444;
}

.manga-item .info h2 {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 600;
    color: #fff;
}

.manga-item .info .meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #aaa;
}

.manga-item .info .meta i {
    margin-right: 5px;
    color: #ffb74d;
}

.trending-badge {
    background-color: rgba(255, 69, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
}
.last-updated {
    margin-top: 5px;
}


/* First-place - Koyu tema */
.manga-item.first-place {
    background: linear-gradient(135deg, #3a0ca3, #7209b7);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    color: #fff;
}

.manga-item.first-place .rank {
    background: #fff;
    color: #3a0ca3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.manga-item.first-place .thumb img {
    border: 3px solid #fff;
}

.manga-item.first-place .info h2 {
    color: #fff;
}

.manga-item.first-place .info .meta {
    color: #ddd;
}

.manga-item.first-place .info .meta i {
    color: #ffe066;
}

/* Responsive */
@media (max-width: 576px) {
    .manga-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .manga-item .thumb {
        margin-bottom: 10px;
    }

    .manga-item .info .meta {
        flex-direction: column;
        gap: 3px;
    }
}
