# Styling & Layout ## Layout Structure ```html Store Locator
``` ## Custom Marker Styling ```css /* Custom marker styles */ .marker { background-size: cover; width: 30px; height: 40px; cursor: pointer; transition: transform 0.2s; } .marker:hover { transform: scale(1.1); } /* Category-specific marker colors */ .marker.retail { background-color: #2196f3; } .marker.restaurant { background-color: #f44336; } .marker.office { background-color: #4caf50; } ```