/*popup*/
#popup-container {
  display: flex;
  flex-direction: row;
  gap: 10px; /* 팝업 사이 간격 */
  position: fixed;
  top:100px;
  left: 20px;
  z-index: 1000;
}

.popup {
    display : none;
    position: relative;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /*box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);*/
}

.popup-content {
    background-color: white;
    padding: 0; 
    text-align: center;
    position: relative;
    overflow: auto;
}

.popup-content img {
    display: block;
    border: 1px solid #ccc;
}

.popup-buttons {
    display: flex;
    width: 100%;
    margin-top: 0;
}

.popup-btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup-btn:hover {
    background-color: #f1f1f1;
}


.close-btn:hover {
    color: rgb(22, 83, 175);
}

#dontShowAgainText {
    background-color: #b8b8b8;
    color: white;
}

#dontShowAgainText:hover {
    background-color: rgb(161, 160, 160);
}

#closePopupBtn {
    background-color: #5086bc;
    color: white;
}

#closePopupBtn:hover {
    background-color:#4375a7;
}

@media (max-width: 768px) {
    #popup-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    #popup {
        width: 90%;
        max-width: 320px;
        background-color: white;
        border-radius:0;
        border: 1px solid #ccc;
        overflow: hidden;

    }

    .popup-content img {
        width: 100%;
        height: auto;
        display: block;
        border:0;
    }

    .popup-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }

    .popup-btn {
        font-size: 14px;
        padding: 8px;
        background-color: #f1f1f1;
        text-align: center;
        cursor: pointer;
    }


}
