/* Frontend Map Container */
.cgm-map-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 80vh;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Locations List */
.cgm-locations-list {
    width: 100%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.cgm-search-box {
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid #dee2e6;
}

.cgm-search-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
}

.cgm-locations-scroll {
    flex: 1;
    overflow-y: auto;
}

/* Location Items */
.cgm-location-item {
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    gap: 15px;
    align-items: center;
}

.cgm-location-item:hover {
    background: #f1f3f5;
}

.cgm-location-item.active {
    background: #e7f5ff;
    border-left: 4px solid #228be6;
}

.cgm-list-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cgm-list-content h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #212529;
}

.cgm-official-number {
    font-size: 13px;
    color: #868e96;
    margin: 0 0 3px 0;
}

.cgm-address {
    font-size: 14px;
    color: #495057;
    margin: 0;
}

/* Map Wrapper */
.cgm-map-wrapper {
    width: 100%;
    height: 400px;
    background: #e9ecef;
}

#cgm-map {
    height: 100%;
    width: 100%;
}

/* Info Window Styles */
.cgm-infowindow {
    min-width: 250px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.cgm-infowindow-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.cgm-infowindow h3 {
    font-size: 16px;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.cgm-infowindow-number {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
}

.cgm-infowindow-address {
    font-size: 14px;
    color: #444;
    margin: 0 0 12px 0;
}

.cgm-directions-button {
    display: inline-block;
    padding: 8px 16px;
    background: #228be6;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.2s ease;
}

.cgm-directions-button:hover {
    background: #1971c2;
}

/* Responsive Design */
@media (min-width: 768px) {
    .cgm-map-container {
        flex-direction: row;
    }
    
    .cgm-locations-list {
        width: 35%;
        height: 100%;
    }
    
    .cgm-map-wrapper {
        width: 65%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .cgm-location-item {
      	display: none;
    }
  
  .cgm-location-item.active {
        display: none;
    }
    
    .cgm-list-image {
        display: none;
    }
  .cgm-locations-scroll {
        display: none;
    }
  .cgm-infowindow-image {
    display: none;
	}
}