div.nav-link > a:nth-child(1) > svg {
    color: #ea476e; /* Text color */
}

/* Neon REPL Styles - Light Mode (Default) */
.neon-repl-container {
    margin-top: 2rem;
    margin-left: -10rem;
    margin-right: -10rem;
    border: 1px solid #ea476e;
    border-radius: 8px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    max-width: none;
}

.neon-input-label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.neon-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem;
    font-family: monospace;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-height: 200px;
    resize: vertical;
    background-color: white;
    color: black;
}

.neon-output-label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.neon-output {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 1rem;
    border-radius: 4px;
    min-height: 100px;
    overflow-x: auto;
    font-family: monospace;
    font-size: 14px;
    white-space: pre-wrap;
}

.neon-button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.neon-example-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.neon-action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.neon-example-btn {
    background-color: transparent;
    color: #ea476e;
    padding: 0.5rem 1rem;
    border: 1px solid #ea476e;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease;
}

.neon-example-btn:hover {
    background-color: #ea476e;
    color: white;
}

.neon-clear-btn {
    background-color: transparent;
    color: #666;
    padding: 0.75rem 1.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease;
}

.neon-clear-btn:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

.neon-run-btn {
    background-color: #ea476e;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}

.neon-run-btn:hover {
    background-color: #d93d5e;
}
