/* Daum 우편번호 검색 오버레이 — dim 배경 + 가운데 모달 */
.daum-postcode-overlay {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 16px;
}

.daum-postcode-panel {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    max-width: 100%;
}

.daum-postcode-close {
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: #666;
    cursor: pointer;
}

.daum-postcode-close:hover {
    color: #333;
    background: #fff;
}

.daum-postcode-embed-host {
    width: 100%;
    height: 100%;
}
