/* Popup Styles */
.popup-wrapper {
    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; /* 다른 요소들 위에 표시되도록 z-index 설정 */
}

.popup-content {
    background-color: #2D2D35;
    padding: 2rem 1rem;
    border-radius: 30px;
    text-align: center;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.popup-title {
    margin-bottom: 1.3rem;
    font-family: 'GangwonEduPower', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    font-style: italic;
    color: #fff;
}

.popup-body {
    margin-bottom: 1.5rem;
    white-space: pre-wrap; /* 줄바꿈(\n)을 인식하도록 설정 */
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    color: #939393;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.popup-button {
    padding: 0.4rem 3rem;
    border: none;
    cursor: pointer;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    background: #454553;
    border-radius: 27px;
    color: #939393;
}

.popup-confirm-btn {
    background-color: #D9FC4C;
    color: #181818;
}

.popup-cancel-btn {
    background-color: #454553;
    color: #939393;
}