
/* Hidden sections */
.hidden {
    display: none;
}

/* Terminal scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc00;
}

/* Global terminal text styling */
body {
    line-height: 1.6;
}

/* Animation for blinking cursor in command input */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cmd-input::after {
    content: "|";
    animation: blink 1s step-end infinite;
    color: #00ff00;
    margin-left: 2px;
}
/* Code block styling */
pre {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 0.25rem;
    border-left: 3px solid #00ff00;
    overflow-x: auto;
}

code {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
}

.copy-btn {
    transition: all 0.2s;
}

.copy-btn:hover {
    background-color: rgba(0, 255, 0, 0.3) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .console-text {
        font-size: 0.9rem;
    }
    pre {
        font-size: 0.7rem;
    }
}
