﻿.toaster {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    margin: 10px 0;
    padding: 14px;
    min-width: 300px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease-in-out;
    background-color: #2f2d42;
    display: none;
    opacity: 0;
    width: auto;
}

.toast {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.87);
    font-size: 15px !important;
    font-family: "Roboto", sans-serif;
    line-height: 20px;
    max-width: 610px;
}

.toast a {
    color: rgba(255, 255, 255, 0.87);
}

.cancel {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.87);
    cursor: pointer;
    font-weight: 500;
}

.toaster.show {
    display: block;
    opacity: 1;
}
