/* css/toast.css - Windows 95 Toast Notifications */

#toast-container {
    position: fixed;
    bottom: 80px; /* Positioned above the 57px taskbar with margin */
    right: 5px;   /* Over the clock area */
    display: flex;
    flex-direction: column-reverse; /* Stack upwards */
    gap: 5px;
    z-index: 10000; /* Above everything, including taskbar */
    pointer-events: none; /* Let clicks pass through container */
}

.win95-toast {
    background-color: #C0C0C0; /* Win95 Gray */
    border: 2px solid;
    border-top-color: #FFFFFF;
    border-left-color: #FFFFFF;
    border-right-color: #000000;
    border-bottom-color: #000000;
    padding: 6px 10px;
    min-width: 200px;
    max-width: 300px;
    font-family: 'Noto Sans', sans-serif; /* Consistent font */
    font-size: 14px;
    color: #000000;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    pointer-events: auto; /* Re-enable clicks for toasts */
    cursor: pointer;
    
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.toast-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-icon {
    font-size: 18px;
}

.toast-message {
    flex-grow: 1;
}

/* Optional Types */
.toast-warning {
    /* Standard look is fine, maybe could add yellow highlight inside if desired, but sticking to Win95 gray dialog look is safer */
}
