.erp-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 280px;
    max-width: 90vw;
    padding: 14px 24px;
    background: rgba(51, 51, 51, 0.95);
    color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #00ffcc;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    font-family: sans-serif;
    display: none;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s ease;
}

.erp-toast:hover {
    background: #222222;
}

@keyframes erpFadeInUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}