﻿.toast-jplm .toast {
    background-color: #2a2a2a;
    color: antiquewhite;
    border-radius: 12px;
    box-shadow: 0 0 0 0.2rem rgba(156, 156, 156, .25);
    overflow: hidden;
    min-width: 300px;
    animation: slideUp 0.4s ease;
}

.toast-header-jplm {
    background-color: #1f1f1f;
    color: #fff;
    font-weight: bold;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast-body-jplm {
    padding: 1rem;
    font-size: 15px;
}

.toast-jplm .btn-close {
    filter: invert(1);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
