/* /public/css/timers/toast.css */

.timer-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.timer-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.timer-toast-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.timer-toast-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.timer-toast-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

@media (max-width: 480px) {
    .timer-toast {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}
