.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    min-width: 300px;
    max-width: 500px;
    padding: 1rem 1.5rem;
    border: 4px solid #000;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: 6px 6px 0 #000;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.2s ease-out;
    z-index: 10000;
    pointer-events: none;
    text-transform: uppercase;
}

.toast-show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-info {
    background: #0EA5E9;
    color: #FFFFFF;
}

.toast-success {
    background: #10b981;
    color: #FFFFFF;
}

.toast-error {
    background: #EF4444;
    color: #FFFFFF;
}

.toast-warning {
    background: #F59E0B;
    color: #000000;
}

@media (max-width: 768px) {
    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        min-width: auto;
    }
}
