/* Toast Notifications Container */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-toast {
    background: rgba(25, 25, 30, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-toast.hide {
    transform: translateX(120%);
    opacity: 0;
}

.custom-toast .toast-icon {
    font-size: 1.5rem;
}

.custom-toast.success .toast-icon { color: #10b981; }
.custom-toast.error .toast-icon { color: #ef4444; }
.custom-toast.warning .toast-icon { color: #f59e0b; }
.custom-toast.info .toast-icon { color: #3b82f6; }

.custom-toast .toast-message {
    flex-grow: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

.custom-toast .toast-close {
    cursor: pointer;
    background: none;
    border: none;
    color: #a1a1aa;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.custom-toast .toast-close:hover {
    color: white;
}
