/* TruthForge Success Toast Notification */
.tf-toast {
    position: fixed;
    top: 100px;
    right: 40px;
    z-index: 99999;
    background: #000;
    border: 1px solid rgba(147, 51, 234, 0.4);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(147, 51, 234, 0.1);
    transform: translateX(120%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    min-width: 280px;
}

.tf-toast.active {
    transform: translateX(0);
    pointer-events: auto;
}

.tf-toast-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tf-toast-icon {
    width: 32px;
    height: 32px;
    background: #9333ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.tf-toast-icon svg {
    width: 18px;
    height: 18px;
}

.tf-toast-message {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tf-toast-title {
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    /* text-transform: uppercase; Removed as per user preference */
}

.tf-toast-status {
    color: #a0a0a0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    /* text-transform: uppercase; Removed as per user preference */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .tf-toast {
        top: auto;
        bottom: 40px;
        right: 20px;
        left: 20px;
        min-width: 0;
    }
}
