/* Arquitetura CSS */

.tab-btn {
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ca3af; /* gray-400 */
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: #e5e7eb; /* gray-200 */
}

.tab-btn.active {
    color: #60a5fa; /* blue-400 */
    border-bottom-color: #60a5fa;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #1f2937; 
}
::-webkit-scrollbar-thumb {
    background: #4b5563; 
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6b7280; 
}

/* Animations */
@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse-green 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

#mynetwork {
    outline: none;
}
