.toast-alpine {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    min-width: 250px;
    max-width: 350px;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toast-alpine.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success { background-color: #28a745; }
.toast-error { background-color: #dc3545; }

@media (max-width: 576px) {
    .toast-alpine { width: 90%; left: 5%; right: 5%; }
}
