.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translate(-50%, -60%); opacity: 0; }
    to { transform: translate(-50%, -50%); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translate(-50%, -50%); opacity: 1; }
    to { transform: translate(-50%, -60%); opacity: 0; }
}

.popup-content {
    width: 600px;
    min-height: 150px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: slideIn 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

.popup-content.closing {
    animation: slideOut 0.3s ease forwards;
}

.popup-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fef5e7;
    color: #f39c12;
}

.popup-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.popup-icon::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #f39c12;
}

.popup-title {
    font-size: 18px;
    font-weight: 600;
    flex-grow: 1;
}

.popup-body {
    padding: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    flex-grow: 1;
}

.popup-footer {
    padding: 10px 20px 15px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.popup-close-btn {
    padding: 8px 20px;
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popup-close-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.popup-close-btn:active {
    transform: translateY(0);
}

/* 반응형 디자인 */
@media (max-width: 600px) {
    .popup-content {
        width: 90%;
        max-width: 500px;
    }
}




/* 추가 */
.cupon-table-wrap .cupon-btnCenter {padding: 0;}

.event-img {width: 100%; height:215px; overflow: hidden;}


/* 작업자 모바일 추가 */
