body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }
    #dealer-locator {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    #dealer-list-container {
        width: 100%;
        overflow-y: auto;
        border-bottom: 1px solid #ccc;
        padding: 10px;
        box-sizing: border-box;
        background-color: #f9f9f9;
    }
    #dealer-list {
        padding: 10px;
    }
    .dealer-list-item {
        padding: 10px;
        border-bottom: 1px solid #ccc;
        cursor: pointer;
    }
    .dealer-list-item:hover,
    .selected-dealer {
        background-color: #e0e0e0;
    }
    #map-container {
        flex: 1;
        width: 100%;
    }
    #map {
        width: 100%;
        height: 60vh;
    }
    #title {
        text-align: center;
        margin: 20px 0;
        font-size: 24px;
        font-weight: bold;
    }
    #state-filter {
        display: block;
        margin: 9px auto -5px auto;
        width: 100%;
        padding: 10px;
        font-size: 16px;
    }

    @media (min-width: 768px) {
        #dealer-locator {
            flex-direction: row;
        }
        #dealer-list-container {
            width: 25%;
            border-bottom: none;
            border-right: 1px solid #ccc;
        }
        #map {
            height: 100%;
        }
        #state-filter {
            
        }
    }
	
	


.dealer-list-item {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dealer-list-item .tag {
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
}
.channel-partner .tag {
    background-color: #007bff; /* Blue */
}
.distributor .tag {
    background-color: #28a745; /* Green */
}




.map-legend {
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
}
.map-legend div {
    margin-bottom: 5px;
}
.map-legend .marker-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}
.dealer-filter {
    display: block;
    margin: 10px auto;
    width: 100%;
    padding: 10px;
    font-size: 16px;
}


       
.body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.dealer-locator {
    display: flex;
    height: 100vh;
}

.dealer-list-container {
    
    overflow-y: auto;
    border-right: 1px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.dealer-list {
    padding: 10px;
}

.dealer-list-item {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.dealer-list-item:hover,
.selected-dealer {
    background-color: #e0e0e0;
}

.map-container {
    flex: 1;
}

.map {
    width: 100%;
    height: 100%;
}




.filter-container {
    margin-bottom: 20px;
    gap: 10px;
}

#categoryFilter, #stateFilter {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#dealerList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dealer-item {
    width: calc(33.33% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dealer-item:hover {
    transform: scale(1.05);
}















