/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent-color);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 2147483647;
    width: 90%;
    max-width: 400px;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
    /* Allow clicks through until active */
}

.toast-notification.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.toast-body {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}