.custom-toast {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    font-family: 'Open Sans', sans-serif;
}

/* You can also add specific styles for different toast types */
.custom-toast.toast-success {
    background-color: #28a745;
    color: white;
}

.custom-toast.toast-error {
    background-color: #dc3545;
    color: white;
}

.custom-toast.toast-info {
    background-color: #17a2b8;
    color: white;
}

.custom-toast.toast-warning {
    background-color: #ffc107;
    color: #212529;
}