/* New styles for the updated design */
@keyframes border-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animate-border-rotate {
    animation: border-rotate 3s linear infinite;
}

.bg-grid-white\/\[0\.02\] {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

.scrollbar-styled {
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.3) transparent;
}

.scrollbar-styled::-webkit-scrollbar {
    width: 6px;
}

.scrollbar-styled::-webkit-scrollbar-track {
    background: transparent;
}

.scrollbar-styled::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 3px;
}

.scrollbar-styled::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.5);
}

.items-start {
    align-items: flex-start;
}

.flex {
    display: flex;
}

* {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.2s ease;
    scrollbar-width: thin;
    scrollbar-color: rgb(59, 130, 246) rgba(0, 0, 0, 0.2);
    border-color: hsl(var(--border));
}

*,
::after,
::before {
    box-sizing: border-box;
    border-width: 0px;
    border-style: solid;
    border-color: rgb(229, 231, 235);
    border-image: initial;
}

.gap-4 {
    gap: 1rem;
}

/* Text color classes */
.text-muted-foreground {
    color: rgba(255, 255, 255, 0.6);
}

.text-foreground {
    color: rgba(255, 255, 255, 0.9);
}

.text-primary {
    color: #3b82f6;
}

.text-secondary {
    color: #8b5cf6;
}