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

/* Header for specific tags */
.tag-header {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff7eb3;
    margin-bottom: 10px;
    border-bottom: 2px solid #ff7eb3;
    padding-bottom: 5px;
}

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

.tag-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);
}

.tag-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;
}

/* Thumbnail grid for albums */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.album {
    text-decoration: none;
    color: #e0e0e0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.7);
}

.album img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.album h2 {
    margin: 10px 0 0;
    font-size: 1.2em;
}

/* Search box */
.tag-search-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    padding: 10px;
}

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

