/* General styles for the popup */
.SidePop {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1000;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s 0.5s;
}

/* Show popup with animation */
.SidePop.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0s 0s;
}

/* Success popup style */
.SidePop.success {
    background-color: #28a745;  /* Green for success */
}

/* Error popup style */
.SidePop.error {
    background-color: #dc3545;  /* Red for error */
}

/* Default popup style */
.SidePop.default {
    background-color: #007bff;  /* Blue for default */
}

/* Optional: You can add some shadow effect to make it stand out */
.SidePop {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}