/* Genel Takvim Tasarımı */
.worlddreaml-manga-takvimi {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 30px !important;
    background-color: #f4f7fa !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    font-family: 'Arial', sans-serif;
}


/* Başlık */
.worlddreaml-manga-takvimi h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Filtreleme Alanı */
.filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.filter label {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

.filter select {
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: #fff;
    margin-right: 15px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter select:focus {
    outline: none;
    border-color: #0073aa;
}

.filter button {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.filter button:hover {
    background-color: #005f80;
    transform: scale(1.05);
}

/* Aylar ve Manga Bölümleri */
.manga-months {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.month-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.month-section:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.month-section h3 {
    font-size: 24px;
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 20px;
    text-align: center;
    text-transform: capitalize;
}

/* Manga Bilgileri */
.manga-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.manga-item:last-child {
    margin-bottom: 0;
}

.manga-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.manga-info {
    display: flex;
    flex-direction: column;
}

.manga-info h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.manga-info p {
    font-size: 14px;
    color: #777;
}

/* Aylar ve Günler */
.manga-item p {
    font-size: 14px;
    color: #444;
    margin-top: 5px;
}

.manga-item h4 {
    font-size: 18px;
    color: #333;
}

/* Resimlerin Üzerindeki Hover Efekti */
.manga-item .manga-image:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* İkon ve Resimlerle Stil */
.manga-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Basit Mesajlar */
.no-results {
    text-align: center;
    font-size: 18px;
    color: #888;
    margin-top: 30px;
}

/* Mobil uyumlu tasarım */
@media (max-width: 768px) {
    .worlddreaml-manga-takvimi {
        padding: 20px;
    }

    .filter {
        flex-direction: column;
        gap: 10px;
    }

    .manga-months {
        grid-template-columns: 1fr;
    }

    .month-section {
        padding: 15px;
    }

    .manga-item {
        flex-direction: column;
        align-items: center;
    }

    .manga-item .manga-image {
        margin-bottom: 10px;
    }
}
