body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-feature-settings: "liga", "kern";
}

.font-mono {
    font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
}

.cursor {
    display: inline-block;
    width: 0.6em;
    height: 1.2em;
    background: currentColor;
    margin-left: 2px;
    vertical-align: -0.2em;
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}


.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #10b981;
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

.link-hover {
    position: relative;
    display: inline-block;
}

.link-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #10b981;
    transition: width 0.3s ease;
}

.link-hover:hover::after {
    width: 100%;
}

#terminal {
    font-family: monospace;
    font-size: 14px;
    cursor: text;
    outline: none;
    user-select: none;
}

.prompt {
    color: #6b7280;
}

.input {
    color: #22c55e;
    display: inline;
}

.placeholder {
    color: #9ca3af;
    display: inline;
}

.cursor {
    display: inline-block;
    width: 0.6em;
    height: 1.2em;
    background: currentColor;
    vertical-align: -0.2em;
    animation: blink 1s steps(1) infinite;
    margin: 0;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

#hiddenInput {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}