/* ================= BASE ================= */

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
}

/* ================= LAYOUT ================= */

.webrtc-page {
  max-width: 100%;
  padding: 20px;
}

h1 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}
.webrtc-header {
  max-width: 900px;
  margin: 0 auto 12px;
}

/* ================= TABLE ================= */

.table {
  max-width: 900px;          /* controls width */
  margin: 0 auto;            /* centers it */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.section-title {
  padding: 7px 10px;
  font-weight: 600;
  font-size: 14px;
  background: #f0f0f0;
  border-top: 1px solid #ddd;
}

.row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-top: 1px solid #eee;
}

.label {
  padding: 7px 10px;
  background: #fafafa;
  font-size: 13px;
  color: #444;
}

.value {
  padding: 7px 10px;
  font-size: 13px;
  word-break: break-all;
}

button {
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid #ccc;
  background: #f9fafb;
  cursor: pointer;
}

button:hover {
  background: #f3f4f6;
}
/* ================= TEXTAREA ================= */

textarea {
  width: 100%;
  height: 110px;
  font-size: 11px;
  font-family: monospace;
}

/* ================= STATUS ================= */

.ok {
  color: #16a34a;
  font-weight: 600;
}

.bad {
  color: #dc2626;
  font-weight: 600;
}

/* ================= FAQ ================= */
/* Editorial FAQ – Professional Style */
.faq-section{
    max-width: 960px;
    margin: 90px auto;
    padding: 0 22px;
}

.faq-section h2{
    font-family: Inter, system-ui, -apple-system;
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 48px;
}

/* Question */
.faq-question{
    font-family: Inter, system-ui, -apple-system;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a; /* deep editorial blue */
    margin: 64px 0 18px;
    line-height: 1.3;
}

/* Answer */
.faq-answer{
    font-family: Inter, system-ui, -apple-system;
    font-size: 17px;
    line-height: 1.85;
    color: #1f2937;
    max-width: 920px;
}

/* Emphasis */
.faq-answer strong{
    font-weight: 700;
    color: #0f172a;
}

/* Links */
.faq-answer a{
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid rgba(37,99,235,.35);
}

.faq-answer a:hover{
    color: #1d4ed8;
    border-bottom-color:#1d4ed8;
}

/* Lists (used only when needed) */
.faq-answer ul{
    margin: 18px 0 18px 22px;
}

.faq-answer li{
    margin-bottom: 10px;
    margin-left:20px;
    color:#41007e;
}

/* Highlight callout (optional) */
.faq-highlight{
    background:#f1f5f9;
    border-left:4px solid #2563eb;
    padding:14px 18px;
    margin:22px 0;
    font-size:16px;
}









.webrtc-subtitle{
    max-width:760px;
    margin:12px auto 0;
    line-height:1.8;
    opacity:.9;
}

.faq-highlight{
    margin-top:20px;
    padding:16px 18px;
    border-radius:12px;
    background:#f8f1cf;
    border:1px solid #e4d7a0;
    line-height:1.8;
    color:#5c4b1f;
}

.faq-yellow-box{
    margin-top:18px;
    margin-bottom:10px;
    padding:15px 18px;
    border-radius:12px;
    background:#f8f1cf;
    border:1px solid #e4d7a0;
    line-height:1.8;
    color:#5c4b1f;
}

.faq-section a{
    color:#1e3a8a;
    font-weight:600;
    text-decoration:none;
    border-bottom:1px solid rgba(30,58,138,0.25);
    transition:all .2s ease;
}

.faq-section a:visited{
    color:#1e3a8a;
}

.faq-section a:hover{
    color:#2b50b8;
    border-bottom-color:#2b50b8;
}

.faq-question{
    margin-top:38px;
    margin-bottom:12px;
    line-height:1.5;
    font-weight:700;
}

.faq-answer{
    line-height:1.9;
    margin-bottom:14px;
}