.hidden {
    display: none;
}

.unique-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; /* 기본 가로 크기 */
    max-width: 90%; /* 작은 화면에서도 적응 */
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
    border-radius: 10px; /* 부드러운 모서리 */
    z-index: 1000;
    text-align: center;
    overflow: hidden; /* 내용 초과 방지 */
}

.unique-popup-content {
    position: relative;
    font-size: 16px; /* 텍스트 크기 */
    color: #333; /* 기본 텍스트 색상 */
    margin-bottom: 20px; /* 하단 여백 */
    line-height: 1.5; /* 텍스트 간격 */
	height:100%;
	padding:20px;
}
.unique-popup-footer {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.unique-popup-footer a, .unique-popup-footer span{
    font-size:14px;
	text-decoration:none;
}

.unique-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 어두운 반투명 배경 */
    z-index: 999; /* 팝업 아래 배치 */
}

.unique-popup-link {
    font-size: 14px;
    text-decoration: underline;
    color: #555; /* 링크 기본 색상 */
    cursor: pointer;
    margin-bottom: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.unique-popup-link:hover {
    color: #000; /* 호버 시 색상 */
}

.unique-popup-close {
    font-size: 16px;
    display: inline-block;
    cursor: pointer;
    color: #555; /* 닫기 버튼 색상 */
    transition: color 0.3s ease;
    margin-top: 10px;
}

.unique-popup-close:hover {
    color: #000; /* 호버 시 색상 */
}
