/* 팝업 버튼 스타일 */
#show-account-btn {
    background-color: #e32735;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.2s;
    margin-top: 3vw;
    font-size: 1.563vw;
    padding: 1vw 3vw;
}
.naverMap{
    background-color: #2db400;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.2s;
    margin-top: 3vw;
    font-size: 1.563vw;
    padding: 1vw 3vw;
}

#show-account-btn:hover {
    background-color: #e32735;
}

/* 팝업 컨테이너 */
.account-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* 팝업 콘텐츠 */
.popup-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 360px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 팝업 헤더 */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #eee;
}

.popup-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.close-btn:hover {
    color: #333;
}

/* 팝업 본문 */
.popup-body {
    padding: 20px;
}

/* 정보 행 */
.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.info-label {
    width: 80px;
    font-size: 14px;
    color: #666;
}

.info-value {
    flex-grow: 1;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.5px;
}

/* 복사 버튼 */
.copy-btn {
    background-color: #eee;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s;
}

.copy-btn:hover {
    background-color: #ddd;
}

/* 복사 메시지 */
.copy-message {
    height: 20px;
    font-size: 14px;
    color: #33cc33;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    margin-top: 10px;
}

/* 팝업 푸터 */
.popup-footer {
    padding: 15px 20px;
    background-color: #f5f5f5;
    border-top: 1px solid #eee;
    text-align: center;
}

/* 모든 정보 복사 버튼 */
.copy-all-btn, #copy-all-btn-0, #copy-all-btn-1 {
    background-color: #3366cc;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.copy-all-btn, #copy-all-btn-0, #copy-all-btn-1:hover {
    background-color: #2850a7;
}
#taxDlg{background-color: #555555;}
#taxDlg > div{margin: 0 auto; display: block; width: 36.458vw; font-size: 1.563vw; color: #ffffff;}
#taxDlg > div img{width: 100%;}
#taxDlg > div h2{font-weight: 500;}
.container{
    background:#9fa5b5;
    padding-bottom: 2.604vw;
    width: 100%;
    text-align: center;
}
.container div{
    padding: 3vw;
    border: 3px solid #ffffff;
    width: 32.813vw;
    margin: 0 auto;
}
.container div h2{
    font-size: 1.563vw;
    line-height: 2.604vw;
}

@media (max-width: 840px) {
    #taxDlg > div{
        width: 70vw;
    }
    .container div {
        width: 60vw;
    }
    .container div h2{
        font-size: 3vw;
        line-height: 5vw;
    }
    .naverMap{
        font-size: 2.5vw;
    }
    #show-account-btn{
        font-size: 2.5vw;
    }
}

/* 모바일 최적화 */
@media (max-width: 500px) {
    .popup-content {
        width: 95%;
    }
    
    .info-label {
        width: 70px;
        font-size: 13px;
    }
    
    .info-value {
        font-size: 15px;
    }
    #taxDlg > div{
        width: 100vw;
    }
    .naverMap{
        font-size: 4vw;
    }
    #show-account-btn{
        font-size: 4vw;
    }
    .container div h2{
        font-size: 4vw;
        line-height: 6vw;
    }
    .container div{
       margin-bottom: 10vw;
        width: 70vw;
    }
    .naverMap{
        padding: 2vw 3vw;
    }
    #show-account-btn{
        padding: 2vw 3vw;
    }
}