/* Custom Popup Styles */
.custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.custom-popup {
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
    z-index: 1051;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transform: scale(0.9);
    animation: popup-animation 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popup-animation {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.custom-popup-icon .checkmark {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #28a745;
    position: relative;
}

.custom-popup-icon .checkmark::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 9px;
    width: 12px;
    height: 24px;
    border: solid white;
    border-width: 0 5px 5px 0;
    transform: rotate(45deg);
}

.custom-popup-message {
    font-size: 1.1rem;
    color: #495057;
    margin: 0;
}