/* Custom styles for Toastr notifications */
.custom-toast {
    position: fixed;
    bottom: 20px; /* Adjust this value for vertical position */
    transform: translateX(-50%); /* Center horizontally */
    padding: 10px; /* Adjust padding as needed */
    /* Add additional styling here */
}

/* Optionally, you can target specific types (error, success) */
.custom-toast-error {
    left:170px;
    background-color: #f44336; /* Example for error background */
}

.custom-toast-success {
    background-color: #4caf50; /* Example for success background */
}
