.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1055;
}

.popup-items-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.popup-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    max-width: 250px; /* 사이즈 축소 */
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.popup-item img {
    max-width: 100%;
    height: auto;
    display: block;
}

.popup-footer {
    padding: 10px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
