.custom-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    max-width: 400px;
    width: 90%;
    animation: fadeIn 0.3s ease-in-out;
}

.custom-popup.show {
    display: block;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.popup-overlay.show {
    display: block;
}

.popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.popup-icon {
    margin-right: 10px;
    font-size: 24px;
}

.popup-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}

.popup-content {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.popup-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.popup-button {
    padding: 8px 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.popup-button-primary {
    background: #FF6B00;
    color: white;
}

.popup-button-primary:hover {
    background: #E65100;
}

.popup-button-secondary {
    background: #6c757d;
    color: white;
}

.popup-button-secondary:hover {
    background: #545b62;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
} 