.popup-modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-inner {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
    text-align: center;
}

@media screen and (max-width:480px) {
    .popup-inner {
        width: 90%;
    }
}

.popup-inner img {
    width: 500px;
    height: auto;
    display: block;
}

.popup-buttons {
    display: flex;
    justify-content: space-between;
    background: #f8f8f8;
    padding: 10px;
}

.popup-buttons button {
    flex: 1;
    border: none;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

.popup-buttons button:first-child {
    border-right: 1px solid #ddd;
}