html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
#map {
    height: 100%;
    width: 100%;
}

/* Custom marker styles */
.custom-marker {
    position: relative;
    background-color: hsla(355, 80%, 56%, 0.75); /* Homehop red */
    color: white;
    padding: 3px 7px 10px 7px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    /*transition: all 0.2s ease;*/
    clip-path: polygon(100% 0, 100% 80%, 54% 80%, 50% 100%, 46% 80%, 0 80%, 0 0);
}
.custom-marker:hover {
    background-color: hsla(355, 80%, 56%, 0.95);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}
.highlight {
    background-color: #a0000d;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    border: 2px solid hsl(355, 80%, 56%);
    transform: scale(1.2);
}
.forced-3 {
    z-index: 3 !important;
}

/*cluster groups */
.cluster {
    background-color: #5f0008;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Info window styles */
.info-window {
    position: relative;
    z-index: 4;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
.info-window h3 {
    margin: 0 0 0.5em 0;
    font-size: 16px;
    font-weight: bold;
}
.info-window p {
    margin: 0;
}
.info-window .badge {
    display: inline-block;
    margin-right: 0.125em;
    width: 16px;
    height: auto;
    vertical-align: middle;
}
.info-window hr {
    border: none;
    border-top: 1px solid #CCC;
}