#store-locator-container {
    display: flex;
    gap: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#store-list {
    overflow-y: auto;
    overflow-x: hidden;
    background: #f5f5f5;
}

.store-search-box {
    padding: 15px 20px;
    background: #1e88e5;
    display: flex;
    gap: 10px;
    align-items: center;
}

.store-search-box input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.store-search-box input::placeholder {
    color: #999;
}

.store-search-box button {
    background: #1976d2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.store-search-box button:hover {
    background: #1565c0;
}

.store-search-box button svg {
    width: 16px;
    height: 16px;
}

.store-list-header {
    padding: 15px 20px;
    background: #1e88e5;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

#map {
    flex-grow: 1;
}

#store-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#store-list li {
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

#store-list li:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateX(2px);
}

#store-list li h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #212121;
}

.store-info {
    margin-bottom: 12px;
}

.store-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #616161;
    display: flex;
    align-items: flex-start;
}

.store-info svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #757575;
}

.store-address {
    font-weight: 500;
}

.store-route-button {
    background: #1e88e5;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
    text-align: center;
}

.store-route-button:hover {
    background: #1976d2;
}

/* OpenStreetMap cluster stílusok */
.custom-cluster-icon {
    background: transparent;
    border: none;
}

.custom-cluster-icon div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.custom-cluster-icon span {
    line-height: 40px;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    #store-locator-container {
        flex-direction: column;
    }
    
    #store-list {
        width: 100% !important;
        max-height: 400px;
        border-bottom: 2px solid #e0e0e0;
    }
    
    #map {
        width: 100% !important;
        min-height: 400px;
    }
    
    .store-search-box {
        flex-wrap: wrap;
    }
    
    .store-search-box input {
        min-width: 0;
    }
    
    .store-search-box button {
        white-space: nowrap;
    }
}
