/* 지도 마커 스타일 */
.pinBox {
    position: relative;
    display: inline-block;
}

.pinInfo {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    margin-bottom: 5px;
}

.pinBox:hover .pinInfo {
    opacity: 1;
    visibility: visible;
}

.pin_red,
.pin_green,
.pin_blue {
    display: block;
    width: 30px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.pin_red {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 36'%3E%3Cpath fill='%23e74c3c' d='M12 0C5.4 0 0 5.4 0 12c0 9 12 24 12 24s12-15 12-24c0-6.6-5.4-12-12-12z'/%3E%3Ccircle fill='%23fff' cx='12' cy='12' r='6'/%3E%3C/svg%3E");
}

.pin_green {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 36'%3E%3Cpath fill='%232ecc71' d='M12 0C5.4 0 0 5.4 0 12c0 9 12 24 12 24s12-15 12-24c0-6.6-5.4-12-12-12z'/%3E%3Ccircle fill='%23fff' cx='12' cy='12' r='6'/%3E%3C/svg%3E");
}

.pin_blue {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 36'%3E%3Cpath fill='%233498db' d='M12 0C5.4 0 0 5.4 0 12c0 9 12 24 12 24s12-15 12-24c0-6.6-5.4-12-12-12z'/%3E%3Ccircle fill='%23fff' cx='12' cy='12' r='6'/%3E%3C/svg%3E");
}

.pin_text {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
    font-size: 12px;
    font-weight: bold;
}
