.toastr-lite-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10600;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
}

.toastr-lite {
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
    padding: 12px 36px 12px 14px;
    position: relative;
    font-size: .9rem;
    line-height: 1.35;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .25s ease, transform .25s ease;
}

.toastr-lite.show {
    opacity: 1;
    transform: translateX(0);
}

.toastr-lite-title {
    font-weight: 700;
    margin-bottom: 2px;
}

.toastr-lite-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: 0;
    color: #fff;
    opacity: .8;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.toastr-lite-close:hover {
    opacity: 1;
}

.toastr-lite-success { background-color: #2e7d32; }
.toastr-lite-error   { background-color: #c62828; }
.toastr-lite-warning { background-color: #ef6c00; }
.toastr-lite-info    { background-color: #1565c0; }

.toastr-lite a {
    color: #fff;
    text-decoration: underline;
}
