:root{--primary-color: #6366f1;--primary-hover: #4f46e5;--danger-color: #ef4444;--danger-hover: #dc2626;--success-color: #22c55e;--warning-color: #f59e0b;--bg-color: #0f172a;--bg-secondary: #1e293b;--bg-tertiary: #334155;--text-color: #f1f5f9;--text-muted: #94a3b8;--border-color: #475569;--font-family: "Segoe UI", system-ui, -apple-system, sans-serif}*{margin:0;padding:0;box-sizing:border-box}body{font-family:var(--font-family);background:var(--bg-color);color:var(--text-color);min-height:100vh;line-height:1.6}#app{display:flex;flex-direction:column;min-height:100vh}.header{display:flex;justify-content:space-between;align-items:center;padding:1rem 2rem;background:var(--bg-secondary);border-bottom:1px solid var(--border-color)}.header h1{font-size:1.5rem;font-weight:600;background:linear-gradient(135deg,var(--primary-color),#a855f7);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.status-indicator{display:flex;align-items:center;gap:.5rem;padding:.5rem 1rem;background:var(--bg-tertiary);border-radius:2rem}.status-dot{width:10px;height:10px;border-radius:50%;background:var(--danger-color);transition:background-color .3s}.status-dot.connected{background:var(--success-color);box-shadow:0 0 10px var(--success-color)}.status-text{font-size:.875rem;color:var(--text-muted)}.main-content{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:1.5rem;padding:1.5rem;flex:1;align-items:start;min-height:calc(100vh - 80px)}.panel{background:var(--bg-secondary);border-radius:1rem;padding:1.5rem;border:1px solid var(--border-color);display:flex;flex-direction:column;gap:1rem;min-width:0}.panel h2{font-size:1.125rem;font-weight:600;color:var(--text-color);padding-bottom:.75rem;border-bottom:1px solid var(--border-color)}.form-group{display:flex;flex-direction:column;gap:.5rem}.form-group label{font-size:.875rem;font-weight:500;color:var(--text-muted)}.video-link{background:var(--bg-tertiary);border:1px solid var(--border-color);border-radius:.5rem;padding:.75rem 1rem;font-size:.8125rem;word-break:break-all}.video-link a{color:var(--primary-color);text-decoration:none}.video-link a:hover{text-decoration:underline}.video-link .placeholder{color:var(--text-muted);font-style:italic}select,input,textarea{padding:.75rem 1rem;background:var(--bg-tertiary);border:1px solid var(--border-color);border-radius:.5rem;color:var(--text-color);font-size:.875rem;font-family:inherit;outline:none;transition:border-color .2s,box-shadow .2s}select:focus,input:focus,textarea:focus{border-color:var(--primary-color);box-shadow:0 0 0 3px #6366f133}select option{background:var(--bg-tertiary)}select:disabled{opacity:.6;cursor:not-allowed}#video-select,#video-select option{direction:rtl;unicode-bidi:plaintext;text-align:right}.timestamp-inputs{display:flex;align-items:center;gap:.5rem}.timestamp-inputs input{width:80px;text-align:center}.timestamp-inputs span{font-size:1.25rem;font-weight:600;color:var(--text-muted)}.transcription-container{flex:1;min-height:200px}.transcription-content{flex:1;background:var(--bg-tertiary);border:1px solid var(--border-color);border-radius:.5rem;padding:1rem;overflow-y:auto;min-height:200px;max-height:calc(100vh - 500px);font-size:.875rem;line-height:1.8;overflow-wrap:anywhere;word-break:break-word}.transcription-content .placeholder{color:var(--text-muted);font-style:italic}.context-questions-content{background:var(--bg-tertiary);border:1px solid var(--border-color);border-radius:.5rem;padding:1rem;overflow-y:auto;min-height:140px;max-height:260px;font-size:.8125rem;line-height:1.6;overflow-wrap:anywhere;word-break:break-word}.context-questions-content .placeholder{color:var(--text-muted);font-style:italic}.context-question-item{padding-bottom:.75rem;margin-bottom:.75rem;border-bottom:1px dashed var(--border-color)}.context-question-item:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}.context-question-meta{font-size:.75rem;color:var(--text-muted);margin-bottom:.35rem}.context-question-label{display:block;font-weight:600;color:var(--text-color);margin-bottom:.25rem}.context-question-text,.context-answer-text{direction:rtl;text-align:right}.context-question-body{unicode-bidi:plaintext;text-align:right}.context-answer-text{margin-top:.35rem}.study-guide-content{background:var(--bg-tertiary);border:1px solid var(--border-color);border-radius:.5rem;padding:.75rem;display:flex;flex-direction:column;gap:.5rem;overflow:auto;min-height:180px;max-height:320px}.study-guide-content img{width:100%;height:auto;border-radius:.5rem;border:1px solid var(--border-color)}.study-guide-content .placeholder{color:var(--text-muted);font-style:italic}.study-guide-meta{font-size:.75rem;color:var(--text-muted)}.btn{padding:.75rem 1.5rem;border-radius:.5rem;font-size:.875rem;font-weight:600;cursor:pointer;border:none;transition:all .2s;font-family:inherit}.btn:disabled{opacity:.5;cursor:not-allowed}.btn-primary{background:var(--primary-color);color:#fff}.btn-primary:hover:not(:disabled){background:var(--primary-hover);transform:translateY(-1px)}.btn-danger{background:var(--danger-color);color:#fff}.btn-danger:hover:not(:disabled){background:var(--danger-hover);transform:translateY(-1px)}.btn-secondary{background:var(--bg-tertiary);color:var(--text-color);border:1px solid var(--border-color)}.btn-secondary:hover:not(:disabled){background:var(--bg-secondary);transform:translateY(-1px)}.session-controls{display:flex;gap:1rem}.session-controls .btn{flex:1}.session-message{padding:1rem;border-radius:.5rem;font-size:.875rem;text-align:center}.session-message.warning{background:#f59e0b33;border:1px solid var(--warning-color);color:var(--warning-color)}.session-message.success{background:#22c55e33;border:1px solid var(--success-color);color:var(--success-color)}.session-message.error{background:#ef444433;border:1px solid var(--danger-color);color:var(--danger-color)}.rag-container{display:flex;flex-direction:column;gap:.5rem}.rag-container label{font-size:.875rem;font-weight:500;color:var(--text-muted)}.rag-status{font-size:.8125rem;color:var(--text-muted)}.rag-status.searching{color:var(--primary-color)}.rag-status.error{color:var(--danger-color)}.rag-results{background:var(--bg-tertiary);border:1px solid var(--border-color);border-radius:.5rem;padding:1rem;overflow-y:auto;min-height:140px;max-height:240px;font-size:.8125rem;line-height:1.6;overflow-wrap:anywhere;word-break:break-word}.rag-results .placeholder{color:var(--text-muted);font-style:italic}.rag-question-item{padding-bottom:.75rem;margin-bottom:.75rem;border-bottom:1px dashed var(--border-color)}.rag-question-item:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}.rag-question-meta{font-size:.75rem;color:var(--text-muted);margin-bottom:.35rem}.rag-question-label{display:block;font-weight:600;color:var(--text-color);margin-bottom:.25rem}.rag-question-text,.rag-answer-text{unicode-bidi:plaintext}.rag-answer-text{margin-top:.35rem}.conversation-container{flex:2;display:flex;flex-direction:column;gap:.5rem}.conversation-container label{font-size:.875rem;font-weight:500;color:var(--text-muted)}.conversation-content{flex:1;background:var(--bg-tertiary);border:1px solid var(--border-color);border-radius:.5rem;padding:1rem;overflow-y:auto;min-height:400px;max-height:calc(100vh - 450px);font-size:.875rem}.conversation-content .placeholder{color:var(--text-muted);font-style:italic}.message{padding:.75rem 1rem;border-radius:.5rem;margin-bottom:.75rem}.message.user{background:#6366f133;border-left:3px solid var(--primary-color)}.message.assistant{background:#a855f733;border-left:3px solid #a855f7}.message-role{font-size:.75rem;font-weight:600;text-transform:uppercase;color:var(--text-muted);margin-bottom:.25rem}.message-content{color:var(--text-color)}.feedback-form{background:var(--bg-tertiary);border-radius:.5rem;padding:1.5rem;margin-top:1rem}.feedback-form h3{font-size:1rem;font-weight:600;margin-bottom:1rem;color:var(--text-color)}.feedback-question{margin-bottom:1rem}.feedback-question label{display:block;font-size:.875rem;color:var(--text-muted);margin-bottom:.5rem}.feedback-textarea{min-height:90px;resize:vertical;line-height:1.5}.rating-scale{display:flex;gap:.5rem}.rating-btn{width:40px;height:40px;border-radius:.5rem;border:1px solid var(--border-color);background:var(--bg-secondary);color:var(--text-color);font-size:.875rem;font-weight:600;cursor:pointer;transition:all .2s}.rating-btn:hover{border-color:var(--primary-color);background:#6366f11a}.rating-btn.selected{background:var(--primary-color);border-color:var(--primary-color);color:#fff}.feedback-form .btn{width:100%;margin-top:1rem}@media (max-width: 1024px){.main-content{grid-template-columns:1fr}.transcription-content{min-height:150px;max-height:250px}.conversation-content{min-height:250px;max-height:350px}}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:var(--bg-tertiary);border-radius:4px}::-webkit-scrollbar-thumb{background:var(--border-color);border-radius:4px}::-webkit-scrollbar-thumb:hover{background:var(--text-muted)}.transcription-content h1,.transcription-content h2,.transcription-content h3{margin-top:1rem;margin-bottom:.5rem}.transcription-content p{margin-bottom:.5rem}.transcription-content code{background:var(--bg-color);padding:.125rem .375rem;border-radius:.25rem;font-size:.8125rem}.transcription-content pre{background:var(--bg-color);padding:1rem;border-radius:.5rem;overflow-x:auto;margin:.5rem 0}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}.loading{animation:pulse 1.5s infinite}
