/* Y2K Thick Skeuomorphic Toast Styles */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.toast-item {
    min-width: 320px;
    padding: 10px 20px;
    background-color: #c0c0c0; /* Classic Win98 Gray */
    border-style: solid;
    border-width: 2px;
    border-color: var(--border-skeuo-light);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
    color: #000;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: bold;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(-20px);
}

.toast-item::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #000080; /* Win98 Navy */
    color: #fff;
    font-size: 14px;
    border: 1px solid #fff;
    flex-shrink: 0;
}

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

.toast-item.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.toast-success::before {
    content: "✓";
    background: #008000;
}

.toast-error::before {
    content: "✕";
    background: #800000;
}

.toast-info::before {
    content: "i";
    background: #000080;
}
