body {
    font-family: Arial, sans-serif;
    background: #222;
    color: #eee;
    margin: 2rem;
}

label,
select {
    display: block;
    margin: 0.5rem 0;
}

select {
    padding: 0.5rem;
    width: 250px;
}

.product-container {
    background: #333;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 6px;
}

.product-summary {
    cursor: pointer;
    user-select: none;
    font-weight: bold;
    font-size: 1.2em;
}

.product-detail {
    margin-top: 1rem;
    display: none;
}

.hero-section {
    margin: 1rem 0;
}

.hero-section h4 {
    margin: 0.5rem 0;
    font-size: 1.1em;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0.5rem 0;
}

.hero-item {
    text-align: center;
    max-width: 120px;
}

.hero-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #555;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-thumbnail.limited {
    border-color: #ff8c00;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.hero-thumbnail.basic {
    border-color: #ff8c00;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.hero-thumbnail.five-star {
    border-color: #ffff00;
    box-shadow: 0 0 8px rgba(255, 255, 0, 0.2);
}

.hero-name {
    font-size: 0.9em;
    color: #ccc;
}

.filter-dropdown {
    padding: 8px;
    margin-right: 10px;
}

.clear-button {
    padding: 8px 12px;
    background-color: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
}

.clear-button:hover {
    background-color: #c0392b;
}

.product-card {
    border: 1px solid #ddd;
    padding: 12px;
    margin: 8px 0;
    border-radius: 6px;
}

.no-heroes {
    color: #888;
    font-style: italic;

    .filter-dropdown {
        padding: 0.4rem 0.7rem;
        border-radius: 5px;
        border: 1px solid #ccc;
        margin-right: 0.5rem;
        font-size: 1rem;
    }

    .clear-button {
        padding: 0.4rem 0.8rem;
        border: none;
        background-color: #d9534f;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
    }

    .clear-button:hover {
        background-color: #c9302c;
    }
}

.hover-effect {
    position: relative;
    color: cyan;
    cursor: pointer;
    display: inline-block;
    transition: color 0.3s ease;
}
.hover-effect::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* Adjusts the position of the underscore */
    width: 100%;
    height: 2px; /* Thickness of the underscore */
    background-color: cyan;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.hover-effect:hover {
    color: lightblue; /* Change text color on hover */
}
.hover-effect:hover::after {
    transform: scaleX(1); /* Expands the underscore on hover */
}
