.popupModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}


.popupModal.fadeOut {
    opacity: 0;
}

.popupContent {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 30px;
}

.popupContent img {
    width: 100%;
    max-width: 700px;
    max-height: 700px;
    height: auto;
}

.popupClose {
    position: absolute;
    top: -50px;
    right: 6px;
    font-size: 24px;
    cursor: pointer;
}

.popUpBtnWrapper {
    position: fixed;
    bottom: 120px;
    right: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: auto;
    height: auto;
}

/*팝업 추가하기*/
.addPopupModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}


.addPopUpBtn {
    width: 80px;
    height: 80px;
    color: white;
    background-color: #006fff;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.addPopupContent {
    display: flex;
    width: 500px;
    height: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    position: relative;
}

#addPopupForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
}

#addPopupForm>input{
width: 200px;
}

#addPopupForm > span {
    position: absolute;
    font-size: 12px;
    color: #b8b8b8;
    top: 144px;
    left: 23px;
}

.addPopupModal.fadeOut {
    opacity: 0;
}


/*팝업 삭제하기*/
.deletePopupModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}


.deletePopupContent {
    display: flex;
    width: 500px;
    max-height: 500px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    position: relative;
    padding: 10px 0;
}

.deletePopupModal.fadeOut {
    opacity: 0;
}

.inputDeletePopupWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.deletePopupList {

    width: 300px;
    margin: 10px 0;
}



.deletePopupList > tbody > tr > td {
    text-align: center;
    vertical-align: middle;
}


.deletePopUpBtn {
    width: 80px;
    height: 80px;
    color: white;
    background-color: #006fff;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*팝업 수정하기*/
.updatePopupModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}


.updatePopUpBtn {
    width: 80px;
    height: 80px;
    color: white;
    background-color: #006fff;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.updatePopupContent {
    display: flex;
    width: 500px;
    max-height: 700px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    position: relative;
    padding: 10px 0;
}

.inputUpdatePopupWrapper{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.updateUrlWrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.inputUpdatePopupWrapper>input{
    width: 200px;
}
.updatePopupModal.fadeOut {
    opacity: 0;
}

.updatePopupList {
    width: 300px;
    margin: 10px 0;
}


.updatePopupList > tbody > tr > td {
    text-align: center;
    vertical-align: middle;
}


.genieQrBtn>a{
    width: 80px;
    height: 80px;
    color: white;
    text-decoration: none;
    background-color: #006fff;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}