﻿/* CSS for Toast messages */
.alert-success {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: #28a745;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.alert-warning {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: #ffc107;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.alert-danger {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: #f00f;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.alert-info {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: #007bff; 
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

