/* General styling for the anime page */
.anime-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.anime-section {
    margin-bottom: 30px;
}

.anime-section-header {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff7eb3;
    margin-bottom: 10px;
    border-bottom: 2px solid #ff7eb3;
    padding-bottom: 5px;
}

.anime-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #1e1e1e;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.anime-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #ff7eb3;
}

.album-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.album-links li {
    background: #2b2b2b;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}

.album-links li a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.9em;
}

.album-links li:hover {
    background: #ff7eb3;
    transform: scale(1.05);
}

.album-links li:hover a {
    color: #1e1e1e;
}

/* Anime search box below header */
.anime-search-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    padding: 10px;
}

.anime-search-input {
    width: 50%;
    max-width: 400px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

