/* CLI Command Terminal Styling */
.cli-command {
    background: #1a1a1a;
    border: 1px solid #3c3c3c;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 16px 0;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    overflow: hidden;
}

.cli-command code {
    color: #61afef;
    display: block;
    white-space: pre-wrap;
    word-break: break-all;
}

.cli-command code::before {
    content: "$ ";
    color: #98c379;
    margin-right: 8px;
}

/* Tooltip styling */
.cli-command code[title] {
    cursor: help;
    border-bottom: 1px dotted #61afef;
}

/* About section styling */
.about__bio {
    margin-top: 12px;
}
