/********************************************************************/
/*Success toast*/
/********************************************************************/

.toast {
    font-family: 'Futura-Medium',sans-serif;
    position: fixed;
    top: 30px;
    right: -300px; /* hidden off-screen */
    padding: 15px 20px;
    border-radius: 8px;
    background-color: #333;
    color: white;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 9999;
}

/* Show animation */
.toast.show {
    right: 30px;
    opacity: 1;
}

/* Success */
.toast.success {
    background-color: #2ecc71;
}

/* Error */
.toast.error {
    background-color: #e74c3c;
}
