.dl-2606-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    height: auto; /* Changed for mobile */
}

@media (min-width: 768px) {
    .dl-2606-container {
        flex-direction: row;
        height: 600px; /* Kept fixed height for desktop */
    }
}

.dl-2606-sidebar {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    border-right: 0; /* Remove border on mobile */
    border-bottom: 1px solid #eee; /* Add bottom border on mobile */
    height: 350px; /* Fixed height for mobile list area so it can scroll */
}

@media (min-width: 768px) {
    .dl-2606-sidebar {
        flex: 1;
        max-width: 350px;
        border-right: 1px solid #eee;
        border-bottom: 0;
        height: auto; /* Reset for desktop */
    }
}

.dl-2606-filter {
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
}

.dl-2606-filter-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.dl-2606-list {
    flex: 1;
    overflow-y: auto; /* Enable scrolling */
    padding: 10px;
}

.dl-2606-dealer-item {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.dl-2606-dealer-item:hover {
    background: #f5f5f5;
}

.dl-2606-dealer-item.active {
    background: #fdfdfd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dl-2606-dealer-name, 
.dl-2606-container h1, 
.dl-2606-container h2, 
.dl-2606-container h3, 
.dl-2606-container h4, 
.dl-2606-container h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000000 !important;
}

.dl-2606-dealer-address {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.dl-2606-dealer-badge {
    display: inline-block;
    padding: 3px 8px;
    background: #eee;
    color: #555;
    font-size: 11px;
    border-radius: 12px;
    font-weight: 500;
}

.dl-2606-map-container {
    flex: 2;
    min-height: 300px;
    background: #eaeaea;
    position: relative;
}

.dl-2606-map-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #888;
    font-size: 16px;
}