.header__catalog {
    position: relative;
}

.dropdown-content-catalog {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 1;
    padding: 10px;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, minmax(5px, auto));
    grid-template-columns: repeat(7);
    gap: 10px;
    max-height: 700px;
    overflow-y: auto;
    margin-top: 20px;
    border: 2px solid #cccccc;
    border-radius: 5px;
}



.column-layout {
    display: contents;
}

.tag {
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
    padding: 5px 10px;
    color: white;
    background-color: #FFA500;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 5px;
}

.subcategory {
    font-size: 0.7em;
    padding-left: 15px;
    color: #555555;
    background-color: #FFF7E0;
    cursor: pointer;
    margin-left: 10px;
    margin-bottom: 3px;
    border-left: 2px solid #FFA500;
}

.btn {
    cursor: pointer;
}