#toast-message{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    min-width: 250px;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all .3s ease;
}

#toast-message.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.toast-success{
    background: #28a745;
}

.toast-error{
    background: #dc3545;
}

.toast-warning{
    background: #f49b00;
}

.toast-info{
    background: #007bff;
}