File: /home/panomity.de/vr.panomity.com/plugins/ollama_chat/ollama_concierge.css
/* KI-Concierge-Erweiterung — Stile passend zum Neon-Look des Basis-Chats */
/* Kopfzeilen-Werkzeuge (Tour, Vorlesen) */
#ollama-chat-tools {
display: flex;
gap: 6px;
margin-left: auto;
margin-right: 8px;
}
#ollama-chat-tools button {
width: 34px;
height: 34px;
border-radius: 50%;
border: 1px solid rgba(0, 255, 255, 0.35);
background: rgba(0, 255, 255, 0.12);
color: rgba(255, 255, 255, 0.9);
cursor: pointer;
font-size: 17px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
}
#ollama-chat-tools button:hover {
background: rgba(0, 255, 255, 0.28);
border-color: rgba(0, 255, 255, 0.7);
}
#ollama-chat-tools button.active {
background: rgba(0, 255, 255, 0.45);
border-color: rgba(0, 255, 255, 1);
box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}
/* Mikrofon-Button */
#ollama-chat-mic {
width: 42px;
min-width: 42px;
height: 42px;
border-radius: 50%;
border: 1px solid rgba(0, 255, 255, 0.4);
background: rgba(0, 255, 255, 0.12);
color: rgba(255, 255, 255, 0.9);
cursor: pointer;
font-size: 19px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
}
#ollama-chat-mic:hover {
background: rgba(0, 255, 255, 0.28);
}
#ollama-chat-mic.recording {
background: rgba(255, 40, 90, 0.45);
border-color: rgba(255, 40, 90, 0.9);
animation: ollama-mic-pulse 1.1s ease-in-out infinite;
}
#ollama-chat-mic.busy {
opacity: 0.6;
pointer-events: none;
}
@keyframes ollama-mic-pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(255, 40, 90, 0.55); }
50% { box-shadow: 0 0 0 12px rgba(255, 40, 90, 0); }
}
/* GPUQ-Status im Ladeindikator */
.ollama-queue-status {
margin-top: 6px;
font-size: 12px;
color: rgba(0, 255, 255, 0.85);
letter-spacing: 0.02em;
}
/* Auto-Tour-Leiste */
#ollama-tour-bar {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
background: linear-gradient(90deg, rgba(0, 255, 255, 0.18), rgba(138, 43, 226, 0.18));
border-bottom: 1px solid rgba(0, 255, 255, 0.35);
}
#ollama-tour-bar .ollama-tour-label {
color: rgba(255, 255, 255, 0.95);
font-size: 13px;
display: flex;
align-items: center;
gap: 6px;
flex: 1;
}
#ollama-tour-bar button {
width: 30px;
height: 30px;
border-radius: 50%;
border: 1px solid rgba(0, 255, 255, 0.4);
background: rgba(0, 255, 255, 0.15);
color: rgba(255, 255, 255, 0.92);
cursor: pointer;
font-size: 15px;
display: flex;
align-items: center;
justify-content: center;
}
#ollama-tour-bar button:hover {
background: rgba(0, 255, 255, 0.32);
}
/* Lead-Formular */
#ollama-lead-form {
display: flex;
flex-direction: column;
gap: 8px;
min-width: 230px;
}
#ollama-lead-form .ollama-lead-title {
font-weight: 600;
color: rgba(255, 255, 255, 0.95);
margin-bottom: 2px;
}
#ollama-lead-form input,
#ollama-lead-form textarea {
background: rgba(0, 0, 0, 0.25);
border: 1px solid rgba(0, 255, 255, 0.3);
border-radius: 8px;
color: rgba(255, 255, 255, 0.95);
padding: 8px 10px;
font-size: 13px;
font-family: inherit;
}
#ollama-lead-form textarea {
min-height: 54px;
resize: vertical;
}
#ollama-lead-form input:focus,
#ollama-lead-form textarea:focus {
outline: none;
border-color: rgba(0, 255, 255, 0.8);
}
#ollama-lead-form button[type="submit"] {
background: linear-gradient(135deg, rgba(0, 255, 255, 0.35), rgba(138, 43, 226, 0.35));
border: 1px solid rgba(0, 255, 255, 0.6);
border-radius: 8px;
color: #fff;
padding: 9px 12px;
font-size: 14px;
cursor: pointer;
transition: all 0.2s ease;
}
#ollama-lead-form button[type="submit"]:hover {
background: linear-gradient(135deg, rgba(0, 255, 255, 0.55), rgba(138, 43, 226, 0.55));
}