/* assets/css/frontend.css */
.ept-toast {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -16px);
    opacity: 0;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 2147483647;
    background: #111;
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .24);
    font: 500 13px/1.3 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    pointer-events: none;
    max-width: 80vw;
    word-break: break-word;
}

.ept-toast.uploading {
    background: #0d6efd;
}

.ept-toast.success {
    background: #198754;
}

.ept-toast.error {
    background: #dc3545;
}

.ept-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}