.gothic-font {
    font-family: 'Crimson Text', serif;
    letter-spacing: 1px;
}

/* Command Card Styling */
.command-card {
    background: #1a1a1a;
    border: 1px solid #333 !important; /* Subtle border when inactive */
    border-left: 4px solid #4a0000 !important; /* Dim maroon accent */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;}

.command-card:hover {
    transform: translateX(3px) translateY(-3px); /* Subtle lift */
    background: #222;
    border-color: var(--bbn-primary) !important; /* Brighten the border */
    border-left-color: var(--bbn-secondary) !important; /* Intense left edge */
    
    /* The Glow: Inner sharp line + outer soft maroon haze */
    box-shadow: 
        inset 0 0 10px rgba(128, 0, 0, 0.2), 
        0 8px 20px -5px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(128, 0, 0, 0.4);
}

code.usage-block {
    display: block;
    background: #000;
    color: #00ff00; /* Terminal Green */
    padding: 15px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.parameter-badge {
    font-size: 0.7rem;
}

/* Add to bbn.css */
.command-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#commandSearch:focus {
    background-color: #1a1a1a;
    color: #fff;
    border-color: #ff0000 !important; /* Brighten the maroon on focus */
    box-shadow: 0 0 10px var(--bbn-primary-shadow);
}