/* Toast Container */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

/* Toast Item */
.toast {
    background: rgba(17, 21, 28, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    border-left: 4px solid transparent;
}

.toast.show {
    transform: translateX(0);
}

/* Toast Types */
.toast.success {
    border-left-color: #2ea043;
}

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

.toast.info {
    border-left-color: #58a6ff;
}

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

/* Icons */
.toast-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast.success .toast-icon { color: #2ea043; }
.toast.error .toast-icon { color: #f85149; }
.toast.info .toast-icon { color: #58a6ff; }
.toast.warning .toast-icon { color: #e3b341; }

/* Content */
.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 2px;
    display: block;
}

.toast-message {
    color: #8b949e;
    font-size: 13px;
}

/* Close Button */
.toast-close {
    background: none;
    border: none;
    color: #8b949e;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    margin-left: 8px;
    transition: color 0.2s;
}

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