/* Toast Notification Styles */
#toastMessage {
position: fixed;
bottom: 20px;
right: 20px;
background: #4CAF50; /* Green success color */
color: white;
padding: 15px 25px;
border-radius: 4px;
font-size: 14px;
font-family: 'Montserrat', sans-serif; /* Match your site's font */
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
opacity: 0;
transform: translateY(100%);
transition: all 0.3s ease;
z-index: 1000;
}

#toastMessage.show {
opacity: 1;
transform: translateY(0);
}