/* Toast Container - Fixed to Top Right */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Allow clicking through container */
}

/* Individual Toast */
.toast {
    min-width: 250px;
    max-width: 350px;
    background: #fff;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    pointer-events: auto;
    /* Re-enable clicks on toasts */
}

/* Show State */
.toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* Variants */
.toast.info {
    border-left-color: #2196F3;
}

.toast.success {
    border-left-color: #4CAF50;
}

.toast.error {
    border-left-color: #F44336;
}

.toast.warning {
    border-left-color: #FF9800;
}

/* Close Button */
.toast-close {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
}

.toast-close:hover {
    color: #333;
}