/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #09090b; }
::-webkit-scrollbar-thumb { background: #27272a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3f3f46; }

/* Hide scrollbar for code area but allow scroll */
#code-display::-webkit-scrollbar {
    width: 6px;
}
#code-display::-webkit-scrollbar-track {
    background: transparent;
}
#code-display::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
#code-display::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Utilities */
.no-select {
    user-select: none;
    -webkit-user-select: none;
}

/* Brand logo minor adjustments */
.site-logo {
    display: inline-block;
    width: 32px;
    height: 32px;
}
.site-logo img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Animations */
@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.animate-cursor {
    animation: cursor-blink 1s step-end infinite;
}
