.ta-category-group {
    margin-bottom: 20px;
}

.ta-offer-title {
    cursor: pointer;
    display: block;
    font-weight: bold;
    padding: 10px;
    background: #eee;
    margin: 0;
    text-decoration: none;
    color: #333;

    a:any-link {
        color: #eeeeee;
    }

    .link-icon {
        vertical-align: middle;
    }
}

/* Basiszustand: zugeklappt */
.ta-offer-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    /* Fade-Out in 0.3s, Collapse in 0.4s */
    transition:
        opacity 0.3s ease-out,
        max-height 0.4s ease;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 5px;
    border: 1px black solid;
    border-top: 0;
    padding-inline: 10px;
}

/* Offener Zustand: aufklappen */
.ta-offer.open .ta-offer-content {
    max-height: 800px;
    /* hoch genug, um alles anzuzeigen */
    opacity: 1;
    /* Fade-In in 1s, Expand in 1s */
    transition:
        opacity 0.7s ease-in,
        max-height 1s ease;

}

a:any-link {
    color: black;
}


/* Suchfeld Container */
.ta-search {
    text-align: right;
    margin-bottom: 15px;
}

/* Label und Input in einer Linie */
.ta-search label {
    margin-right: 8px;
    font-weight: bold;
}

/* Eingabefeld */
.ta-search input[type="number"] {
    width: 100px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}
