/* 버블 마커 스타일 */
.bubble {
    width: 60px;
    background-color: var(--bubble-color, #725CFA);
    color: var(--font-color, white);
    position: relative;
    border-radius: 2px 2px 2px 0px;
}

.bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    border-top: 16px solid var(--bubble-color, #725CFA);
    border-right: 16px solid transparent;
    border-left: 0;
    border-bottom: 0;
}

.bubble .price {
    background-color: white;
    border-radius: 2px 2px 0px 0px;
}

/* 지역 마커 스타일 */
.region-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 45px;
    background: #1362FB;
    border-radius: 25px;
    color: #fff;
    line-height: 1.1;
    text-align: center;
    padding: 6px 10px;
    user-select: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.region-marker:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 98, 251, 0.3);
}

.region-marker span.region {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 1px;
}

.region-marker span.count {
    font-size: 13px;
    font-weight: 600;
}

.region-marker.sido {
    min-width: 70px;
    padding: 8px 12px;
    border-radius: 30px;
    font-weight: 700;
}

.region-marker.sido span.region {
    font-size: 12px;
    font-weight: 700;
    opacity: 1;
    letter-spacing: 0.5px;
}

/* 캡슐 오버레이 스타일 */
.capsule-overlay {
    position: relative;
    width: 70px;
    height: 22px;
    border-radius: 100px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.capsule-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: #878787;
    border-radius: 100px 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* 텍스트 가독성 향상 */
}

.capsule-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C2C2C; /* 더 진한 텍스트 */
    font-size: 10px;
    font-weight: 600;
    line-height: 1.1;
}