body { font-family: 'Inter', sans-serif; background: #777BB4; }
.mono { font-family: 'Fira Code', monospace; }

/* Colores de Tokens PHP */
.type-keyword { color: #93C5FD; font-weight: bold; }
.type-function { color: #FACC15; font-weight: bold; }
.type-variable { color: #4ADE80; font-weight: bold; }
.type-string { color: #FB923C; font-weight: bold; }
.type-number { color: #38BDF8; font-weight: bold; }
.type-operator { color: #F472B6; font-weight: bold; }
.type-symbol { color: #A78BFA; font-weight: bold; }
.type-tag { color: #FFD700; font-weight: bold; }
.type-unknown { color: #94a3b8; }

/* Scrollbars */
.console-scroll::-webkit-scrollbar { width: 6px; }
.console-scroll::-webkit-scrollbar-thumb { background: #777BB4; border-radius: 10px; }

/* Componentes de Interfaz */
.input-php-area {
    width: 100%; border: 2px solid #f3f4f6; padding: 2rem; 
    font-family: 'Fira Code', monospace; font-size: 1.125rem; 
    outline: none; border-radius: 1.5rem; transition: all 0.3s;
    background-color: #ffffff; color: #374151; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.input-php-area:focus { border-color: #777BB4; box-shadow: 0 0 0 4px rgba(119, 123, 180, 0.1); }

.btn-top-header {
    color: #777BB4; font-size: 10px; font-weight: 900; 
    text-transform: uppercase; letter-spacing: 2px;
    display: flex; align-items: center; gap: 0.5rem;
    background: white; padding: 0.5rem 1rem; border-radius: 9999px;
    border: 1px solid #e5e7eb; transition: all 0.2s;
}
.btn-top-header:hover { color: #1f2937; border-color: #9ca3af; }

/* Autocompletado */
#autocomplete-list {
    position: absolute; z-index: 50; width: 100%; max-height: 200px;
    overflow-y: auto; background: white; border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3); display: none;
    border: 1px solid #e5e7eb; top: 100%; margin-top: 4px;
}
.suggestion-item {
    padding: 0.6rem 1rem; cursor: pointer; border-bottom: 1px solid #f1f5f9;
    font-size: 0.85rem; color: #1f2937; transition: all 0.2s;
}
.suggestion-item:hover { background-color: #f5f3ff; border-left: 4px solid #777BB4; }