.showrooms {
    padding: 0;
    overflow-y: auto;
    max-height: 600px;
}

.showroom-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.showroom-item:hover {
    background: #f9f9f9;
}

.showroom-item.active {
    background: var(--primary-color);
    border-left: 4px solid var(--second-color);
}
    .showroom-item.active *{
        color: #fff;
    }

.showroom-item h3, .showroom-item p{margin-bottom: 0;}
