/* Styles for the popup and overlay */
.popup {
    display: none;
    position: fixed;
    z-index: 99999;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.popup.bottom-right {
    top: 100px;
    right: 30px;
}

.popup-content {
    background-color: #eb9848;
    padding: 20px 40px 20px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    min-width: 280px;
}

.close-popup {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.2s;
}

.close-popup:hover {
    transform: scale(1.2);
}

.errorcolor {
    color: white;
    font-size: 15px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
}

/* Customize popup styles as needed */