/*.market-pillar {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    border-radius: 4px;
}

.market-pillar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f7f7f7;
}

.market-pillar-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 10px;
}

.market-pillar.open .market-pillar-content {
    max-height: 1000px;
}

.market-pillar-toggle {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.2rem;
}
*/