/* ============================================================
   call-put.ch – Gemeinsames Stylesheet
   Extrahiert aus den Inline-<style>-Blöcken von:
   index, kapitel1–5, aufgabe1–4, strategie1–4
   (simulation.html und profit-simulation.html haben eigenes CSS)

   Gruppen-Scoping über Body-Klassen:
   body.page-kapitel   → index.html, kapitel1–5.html
   body.page-aufgabe   → aufgabe1–4.html
   body.page-strategie → strategie1–4.html
   ============================================================ */

/* ---------- 1. Farb-Variablen ---------- */
:root {
    --c-nav-active: #001a33;  /* aktiver Nav-Punkt */
    --c-title: #002d5b;       /* Haupttitel im Header */
    --c-h1: #004a99;          /* h1, Symbol, Aktions-Buttons (Prüfen etc.) */
    --c-h2: #0066cc;          /* h2, Greek-Box */
    --c-accent: #0056b3;      /* Akzent: Border-Left, Inputs, Task-Titel */
    --c-btn: #2563eb;         /* "Weiter"-Button */
    --c-btn-hover: #1d4ed8;
    --c-ok: #28a745;          /* Feedback richtig */
    --c-err: #dc3545;         /* Feedback falsch */
    --c-warn: #c81e1e;        /* Highlight-Box (Achtung) */
    --c-bg: #f8f9fa;          /* Seitenhintergrund, Szenario-Box */
    --c-text: #333;           /* Standard-Textfarbe */
    --c-muted: #666;          /* Sekundärtext (Untertitel, Captions) */
}

/* ---------- 2. Grundlayout ---------- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Damit Bilder auf Handys nicht überlaufen */
img {
    max-width: 100%;
    height: auto;
}

/* ---------- 3. Header / Navigation oben ---------- */
header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo-area {
    display: flex;
    flex-direction: column;
}

/* Wortmarke im Header: "Das Einmaleins der" dunkelblau, "Optionen" im
   helleren Site-Blau als Akzent. index.html nutzt ein h1.main-title
   (Barrierefreiheit), alle anderen Seiten ein span.main-title –
   h1.main-title stellt sicher, dass die globale h1-Regel
   (Farbe/Grösse/Margin) hier nicht durchschlägt. */
.brand {
    text-decoration: none;
}

.main-title,
h1.main-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
    color: var(--c-title);
    margin: 0;
}

.title-accent {
    color: var(--c-h2);
}

/* ---------- 4. Hauptinhalt ---------- */
.container {
    box-sizing: border-box; /* Padding zaehlt zur Breite -> kein Ueberlauf auf Mobile */
    width: 100%;
    max-width: 940px;       /* 900px Inhalt + 2x20px Padding, wie vor dem border-box-Fix */
    margin: 40px auto;
    padding: 0 20px;
    flex: 1;
}

.content-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

h1 {
    color: var(--c-h1);
    font-size: 28px;
    margin-bottom: 20px;
}

/* Vereinheitlicht: margin-top 50px (Kapitel-Wert; index hatte 30px) */
h2 {
    color: var(--c-h2);
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 15px;
}

/* h3 + p nur für die Kapitel-Gruppe gescopet: Aufgaben/Strategien nutzen
   h3.task-title bzw. ungestylte p – ein globales h3/p würde deren
   Darstellung verändern. h3 vereinheitlicht ohne border-bottom (kapitel2). */
body.page-kapitel h3 {
    font-size: 16px;
    font-weight: bold;
    color: #444;
    margin-top: 20px;
    display: inline-block;
    padding-bottom: 5px;
}

body.page-kapitel p {
    margin-bottom: 15px;
}

/* ---------- 5. Feedback (alle Seiten, vereinheitlicht: margin-top 5px) ---------- */
.feedback {
    display: none;
    margin-top: 5px;
    font-weight: bold;
    font-size: 14px;
}

.feedback.correct {
    color: var(--c-ok);
}

.feedback.incorrect {
    color: var(--c-err);
}

.feedback.info {
    color: #fd7e14;
}

/* Leere Eingabefelder nach einem Prüfversuch (gelb/orange markiert) */
.input-empty {
    border-color: #d97706 !important;
    background: #fffbeb !important;
}

/* ---------- 6. Quiz / Selbstkontrolle ---------- */
.quiz-container {
    margin-top: 50px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--c-accent);
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.question-block {
    margin-bottom: 25px;
}

.question-text {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* <b>/<strong> innerhalb der (bereits halbfetten) Frage nicht auf 900
   hochschrauben (Browser-Default "bolder"), sondern normal fett zeigen */
.question-text b,
.question-text strong {
    font-weight: 700;
}

/* Vereinheitlicht: align-items flex-start, margin-bottom 8px, input margin-top 3px */
.option-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    cursor: pointer;
    font-weight: normal;
}

.option-label input {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--c-accent);
}

/* .quiz-header ist zwischen den Gruppen unterschiedlich definiert */
body.page-kapitel .quiz-header {
    font-size: 18px;
    font-weight: bold;
    color: var(--c-text);
    margin-bottom: 20px;
}

body.page-aufgabe .quiz-header,
body.page-strategie .quiz-header {
    font-size: 22px;
    font-weight: bold;
    color: var(--c-text);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--c-accent);
    padding-bottom: 10px;
}

/* ---------- 7. Navigation unten / Buttons ---------- */
.bottom-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-block;
}

.btn-back {
    background-color: #fff;
    color: var(--c-text);
    border: 1px solid #ccc;
}

.btn-back:hover {
    background-color: #f5f5f5;
    border-color: #bbb;
}

.btn-next {
    background-color: var(--c-btn);
    color: #fff;
    border: 1px solid var(--c-btn);
}

.btn-next:hover {
    background-color: var(--c-btn-hover);
}

/* "Modul abschliessen" (kapitel5) */
.btn-finish {
    background-color: #008000;
    color: #fff;
    border: 1px solid #008000;
}

.btn-finish:hover {
    background-color: #006400;
}

/* ---------- 8. Footer ---------- */
footer {
    text-align: center;
    padding: 30px 20px;
    color: #6b7280; /* vorher #888: zu wenig Kontrast bei 12px auf #fafafa (WCAG AA) */
    font-size: 12px;
    margin-top: auto;
    border-top: 1px solid #eee;
    background: #fafafa;
}

/* Footer-Links: About / Kontakt / Datenschutz / Rechtliche Hinweise */
footer a {
    color: #4b5563;
    text-decoration: underline;
    text-underline-offset: 2px;
}

footer a:hover {
    color: var(--c-h2);
}

/* ============================================================
   Kapitel-Seiten (body.page-kapitel)
   ============================================================ */

/* Element-Tabelle aus kapitel2 ("Die vier Grundpositionen").
   :not(.comparison-table) verhindert, dass die Vergleichstabelle
   von kapitel4 einen zusätzlichen Aussenrahmen erbt. */
body.page-kapitel table:not(.comparison-table) {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    border: 1px solid #e0e0e0;
}

body.page-kapitel table:not(.comparison-table) th,
body.page-kapitel table:not(.comparison-table) td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

body.page-kapitel table:not(.comparison-table) th {
    background-color: #f0f4f8;
    color: var(--c-text);
    font-weight: 600;
}

/* Einflussfaktoren-Tabelle (kapitel5, 5.4): blauer Kopf im Site-Design,
   Pfeil-Spalten zentriert, schmal zentriert mit abgerundeten Ecken.
   border-collapse: separate noetig, weil collapse kein border-radius kann;
   Zeilentrennung deshalb nur ueber border-bottom der Zellen. */
body.page-kapitel table.faktor-table {
    width: auto;
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
}

body.page-kapitel table.faktor-table th,
body.page-kapitel table.faktor-table td {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 18px;
}

body.page-kapitel table.faktor-table tbody tr:last-child td {
    border-bottom: none; /* Aussenrahmen der Tabelle uebernimmt die Unterkante */
}

body.page-kapitel table.faktor-table th {
    background-color: var(--c-h1);
    color: #fff;
}

body.page-kapitel table.faktor-table th:first-child {
    border-top-left-radius: 8px;
}

body.page-kapitel table.faktor-table th:last-child {
    border-top-right-radius: 8px;
}

body.page-kapitel table.faktor-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

body.page-kapitel table.faktor-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

body.page-kapitel table.faktor-table th:not(:first-child),
body.page-kapitel table.faktor-table td:not(:first-child) {
    text-align: center;
}

body.page-kapitel table.faktor-table td:not(:first-child) {
    font-size: 17px;
    font-weight: 600;
}

/* Bildunterschrift (kapitel1) */
.caption {
    font-size: 13px;
    color: var(--c-muted);
    text-align: center;
    display: block;
    margin-top: -15px;
    margin-bottom: 25px;
    font-style: italic;
}

/* Rechen-/Analogieboxen (kapitel2, kapitel3) */
.calc-box {
    background-color: #f5f5f5;
    padding: 20px;
    border-left: 4px solid var(--c-muted);
    margin: 20px 0;
    border-radius: 4px;
}

.box-titel {
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 1.5px;
    color: var(--c-muted);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* Warnbox (kapitel2, kapitel4) */
.highlight-box {
    background-color: #fff2f2;
    border-left: 4px solid var(--c-warn);
    padding: 15px;
    margin: 20px 0;
}

/* --- Kapitel 4: Vergleichstabelle + Aufgaben-Zeilen --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}

.comparison-table td {
    padding: 20px;
    vertical-align: top;
    border: 1px solid #ddd;
    width: 50%;
}

.task-row {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.col-stock,
.col-option {
    flex: 0 0 190px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0 10px;
}

.input-wrapper input {
    border: none;
    outline: none;
    padding: 8px 0;
    width: 100%;
    font-size: 1rem; /* alle Antwortfelder einheitlich 16px */
}

.input-label {
    font-size: 0.85em;
    color: #4b5563; /* vorher #555: Kontrast bei ~13.6px Schrift angehoben */
    margin-bottom: 5px;
    display: block;
    white-space: nowrap;
}

.btn-inline {
    height: 38px;
    padding: 0 20px;
    background-color: var(--c-h1);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.btn-inline:hover {
    background-color: #003366;
}

/* --- Kapitel 3: eingebettete Simulations-iframes ---
   Höhe exakt auf die rechte Spalte des Embeds abgestimmt
   (Legende 114px + Abstand + Berechnungsbox inkl. Kennzahlen, Ende bei
   383px + 10px Wrapper-Padding = 393px; in allen 4 Varianten identisch) */
.sim-embed-frame {
    width: 100%;
    height: 393px;
    border: none;
    display: block;
}

/* Mobil stapelt das Embed-Layout im iframe (Chart + Legende + Rechenbox
   untereinander) – zu wenig Höhe würde den Inhalt abschneiden */
/* Der Chart im Embed belegt 50% der iframe-Höhe (50vh) — der Inhalt wächst
   also mit dem Rahmen mit: benötigt wird H >= fester Anteil (380px) + H/2 */
@media (max-width: 768px) {
    .sim-embed-frame {
        height: 770px;
    }
}

/* --- Kapitel 5: Griechen --- */
.greek-box {
    background-color: #f4faff;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid var(--c-h2);
    border-radius: 4px;
}

.symbol {
    font-family: 'Times New Roman', serif;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 10px;
    color: var(--c-h1);
}

/* ============================================================
   Aufgaben- und Strategie-Seiten (gemeinsame Regeln)
   ============================================================ */
.task-container {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--c-accent);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.task-title {
    color: var(--c-accent);
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
}

.sub-task-title {
    font-weight: 600;
    color: var(--c-text);
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Teilaufgaben-Trenner (Definition aus strategie1; wird auch von den
   Aufgaben-Seiten benutzt, war dort aber nicht definiert) */
.sub-task {
    margin-bottom: 30px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 20px;
}

.sub-task:last-child {
    border-bottom: none;
}

.scenario-box {
    background-color: var(--c-bg);
    border: 1px solid #dee2e6;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.scenario-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* --- Zeichen-Canvas --- */
/* Bereinigt: doppelte display-Angabe entfernt, es gilt nur noch flex */
.canvas-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    position: relative;
}

canvas {
    border: 2px solid #333;
    border-radius: 4px;
    cursor: crosshair;
    touch-action: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
    background-color: #fff;
}

.canvas-controls {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

/* Icons IN der Zeichenflaeche oben rechts - auf Aufgaben- UND
   Strategieseiten (Wunsch Jürg, 08.08.2026). */
.canvas-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.icon-btn {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    font-size: 18px;
    padding: 0;
    color: #555;
    position: relative;
}

.icon-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* Radiergummi-Button im aktiven Zustand + Cursor auf der Zeichenflaeche */
.icon-btn.aktiv {
    background-color: var(--c-h1);
    border-color: var(--c-h1);
    color: #fff;
}

.icon-btn.aktiv:hover {
    background-color: #003366;
}

canvas.radierer-aktiv {
    cursor: crosshair;
}

/* --- Buttons (Aufgaben/Strategien) ---
   Einheitlicher Aktions-Button-Look nach Vorbild .btn-inline (kapitel5):
   38px hoch, 14px Schrift, dunkelblau var(--c-h1). */
body.page-aufgabe .btn-check,
body.page-aufgabe .btn-canvas,
body.page-strategie .btn-check,
body.page-strategie .btn-canvas {
    height: 38px;
    padding: 0 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s;
    border: none;
    color: white;
    margin-top: 10px;
}

body.page-aufgabe .btn-check,
body.page-strategie .btn-check {
    background-color: var(--c-h1);
}

body.page-aufgabe .btn-check:hover,
body.page-strategie .btn-check:hover {
    background-color: #003366;
}

/* Lösung anzeigen: Orange (immer kombiniert mit .btn-canvas) */
.btn-toggle {
    background-color: #fd7e14;
}

.btn-toggle:hover {
    background-color: #e36a0d;
}

/* Zeichnung prüfen: Dunkelblau wie alle Prüf-Buttons (kombiniert mit .btn-canvas) */
.btn-verify {
    background-color: var(--c-h1);
}

.btn-verify:hover {
    background-color: #003366;
}

/* ============================================================
   Nur Aufgaben-Seiten
   ============================================================ */
.calc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.calc-table th {
    background-color: #e9ecef;
    color: #495057;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}

.calc-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #dee2e6;
}

.calc-table tr:hover {
    background-color: #f1f3f5;
}

/* .input-calc ist zwischen Aufgaben und Strategien unterschiedlich */
body.page-aufgabe .input-calc {
    width: 70px;
    padding: 6px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    text-align: center;
    transition: border-color 0.2s;
    font-size: 1rem; /* alle Antwortfelder einheitlich 16px (rem: kontextunabhängig) */
}

body.page-aufgabe .input-calc:focus {
    border-color: var(--c-accent);
    outline: none;
}

.chart-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.chart-option {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
    min-width: 160px;
}

.chart-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.chart-option img {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 150px;
    height: auto;
    border: 1px solid #eee;
}

.select-styled {
    padding: 6px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    min-width: 250px;
    margin-top: 5px;
}

/* Debug-Ausgabe (per JS eingeblendet) */
#debugOutput {
    width: 100%;
    height: 120px;
    margin-top: 10px;
    font-family: monospace;
    font-size: 12px;
    border: 1px solid #ccc;
    padding: 10px;
    background: #f0f0f0;
    display: none;
}

/* ============================================================
   Nur Strategie-Seiten
   ============================================================ */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.data-table th {
    background-color: #e9ecef;
    color: #495057;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}

.data-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #dee2e6;
}

/* Tabelle ohne Striche (Aufgabe b) */
.clean-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.clean-table td {
    padding: 8px 10px;
    border: none;
    vertical-align: middle;
}

.clean-table tr {
    border-bottom: none;
}

body.page-strategie .input-calc {
    width: 100px;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    text-align: center;
    transition: border-color 0.2s;
    font-size: 1rem; /* alle Antwortfelder einheitlich 16px (vorher 1em = 15.2px im 0.95em-Kontext) */
    background: #fff;
}

body.page-strategie .input-calc:focus {
    border-color: var(--c-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 600px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Aufgaben + Strategien */
    .scenario-grid {
        flex-direction: column;
        gap: 5px;
    }

    /* nur Strategien */
    body.page-strategie .input-calc {
        width: 80px;
    }

    /* Aufgaben: Rechentabellen kompakter + horizontaler Scroll-Fallback
       (display:block nur hier im Mobile-Query, Desktop bleibt table) */
    body.page-aufgabe .calc-table {
        display: block;
        overflow-x: auto;
        font-size: 0.85em;
    }

    body.page-aufgabe .calc-table th,
    body.page-aufgabe .calc-table td {
        padding: 6px 8px;
    }

    body.page-aufgabe .input-calc {
        width: 54px;
    }

    /* Dropdowns der Aufgabenseiten: volle Breite statt min-width 250px */
    .select-styled {
        min-width: 0;
        width: 100%;
        max-width: 300px;
    }

    /* Kapitel 4: Vergleichstabelle untereinander */
    .comparison-table td {
        display: block;
        width: 100%;
        border-bottom: none;
    }

    .comparison-table td:last-child {
        border-bottom: 1px solid #ddd;
    }
}

/* Kapitel 4: Aufgaben-Zeilen (Input + Button) untereinander */
@media (max-width: 650px) {
    .col-stock,
    .col-option {
        flex: 1 1 100%;
        width: 100%;
    }

    .task-row {
        gap: 10px;
    }

    .btn-inline {
        width: 100%;
        margin-top: 5px;
    }
}

/* ============================================================
   Druck
   ============================================================ */
@media print {
    /* Interaktive/navigatorische Elemente ausblenden;
       der Footer (Attribution + Links zu Kontakt/Datenschutz/Rechtlichem) bleibt sichtbar */
    .bottom-nav,
    .canvas-icons,
    .canvas-controls,
    button,
    iframe {
        display: none !important;
    }

    /* Inhalt in voller Breite, ohne Bildschirm-Schatten */
    .container {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .content-box,
    .task-container,
    .quiz-container {
        box-shadow: none;
    }

    /* Boxen nicht über Seitenumbrüche zerreissen */
    .calc-box,
    .quiz-container,
    .content-box {
        break-inside: avoid;
    }
}
