/**
 * Styles for the public-facing side of the site.
 */

/* Map container */
.reseller-map-container {
    margin-bottom: 15px;
    position: relative;
}

.reseller-map {
    width: 100%;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Search box styling */
.reseller-map-search-container {
    margin: 10px;
    position: relative;
}

.reseller-map-search {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Category filter controls */
.reseller-map-controls {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.reseller-map-controls label {
    margin-right: 15px;
    font-weight: bold;
}

/* Loading indicator */
.reseller-map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: none;
}

/* Info window styling */
.reseller-info-window {
    min-width: 280px;
    max-width: 350px;
    padding: 10px;
    font-family: "TradeGothicLTPro", Sans-serif;
}

.reseller-info-window h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}


.reseller-info-window p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.reseller-info-window a,
.reseller-info-window a:hover {
    text-decoration: none !important;
}

/* Thumbnail in info window */
.reseller-thumbnail {
    float: right;
    margin: 0 0 10px 10px;
    max-width: 100px;
    border: 1px solid #eee;
    padding: 2px;
    background: #fff;
}

.reseller-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .reseller-map {
        height: 400px;
    }
    .reseller-info-window {
        max-width: 260px;
    }
    .reseller-thumbnail {
        max-width: 80px;
    }
}

/* Adjustments */
.reseller-info-window {
    margin-top: -46px;
	padding-bottom: 12px;
}
.reseller-info-window h3 {
    font-size: 24px;
    padding-right: 36px;
}
.reseller-info-window p {
    font-family: "TradeGothicLTPro", Sans-serif;
    margin: 0;
}
.reseller-info-window a {
    text-decoration: none;
	outline: none;
}
.gm-style .gm-style-iw-d {
    overflow: visible !important;
}