﻿.toast {
    background-color: #333 !important; /* Dark background color */
    color: #fff !important; /* White text */
    font-size: 16px; /* Set font size */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: shadow effect */
}

.toast-title {
    font-weight: bold; /* Make the title bold */
    font-size: 18px; /* Adjust title font size */
}

.toast-message {
    font-size: 14px; /* Adjust message font size */
}

.toast-top-center {
    top: 20px; /* Position from top */
    left: 50%; /* Position from left */
    transform: translateX(-50%); /* Center horizontally */
}

.toast-success {
    background-color: #005B8D !important; /* Seconadry Blue for success */
}

.toast-error {
    background-color: #dc3545 !important; /* Red for error */
}

.toast-warning {
    background-color: #ffc107 !important; /* Yellow for warning */
}

.toast-info {
    background-color: #17a2b8 !important; /* Blue for info */
}
