/* Allgemeine Stile für den internen Bereich */
.secret-heading {
    font-size: 2rem;
    color: #333;
}

.secret-error {
    color: red;
}

.secret-success {
    color: green;
}

.secret-table {
    border-collapse: collapse;
    width: 100%;
}

.secret-th, .secret-td {
    border: 1px solid #ccc;
    padding: 8px;
}

.secret-th {
    background: #eee;
}

.secret-row:nth-child(even) {
    background-color: #f9f9f9;
}

.secret-row:hover {
    background-color: #f1f1f1;
}

.secret-link {
    text-decoration: none;
    color: #0078d7;
    font-weight: normal; /* Alle Links normal */
}

.secret-link:hover {
    text-decoration: underline;
}

.secret-subtitle {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #333;
}

.secret-form {
    margin-top: 20px;
}

.secret-label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.secret-input, .secret-textarea, .secret-select {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
}

.secret-button {
    background-color: #0078d7;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.secret-button:hover {
    background-color: #005bb5;
}

.secret-button:focus {
    outline: none;
}

.secret-output {
    margin-top: 20px;
}

.secret-textarea {
    width: 100%;
    height: 100px;
    max-width: 600px;
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
}

/* Menü für den internen Bereich */
.secret-nav {
    background-color: #f0f0f0;
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menüeinträge links */
.secret-menu-home {
	flex: 0 0 auto;  /* Verhindert, dass es flexibel wächst oder schrumpft */
    margin-right: 50px; /* optionaler Abstand zur nächsten Gruppe */
}

/* Menüeinträge ab "Benutzer" weiter nach links verschoben */
.secret-menu-links {
    display: flex;
    gap: 10px;
    /*margin-right: 40%; /*30px; /* Abstand zu "Startseite" */
	justify-content: flex-start; /* Stellt sicher, dass die Links nach links ausgerichtet sind */
	flex-grow: 1; /* Ermöglicht den Links, den verbleibenden Raum zu nutzen */
}

/* Styling für Links */
.secret-link {
    text-decoration: none;
    color: #0078d7;
    font-weight: normal; /* Alle Links normal */
}

/* Startseite-Link fett */
.secret-link-home {
    font-weight: bold;
}

/* Abmelden-Link fett */
.secret-link-logout {
    font-weight: bold;
}

.secret-link:hover {
    text-decoration: underline;
}

/* Benutzer-Info für den internen Bereich */
.secret-user-info {
    float: right;
    font-size: 14px;
    color: #333;
}

.secret-countdown {
    font-weight: bold;
    color: #d9534f; /* Rote Farbe für Countdown */
}

/* Countdown Styling */
#countdown {
    font-weight: bold;
    color: #d9534f; /* Rote Farbe für Countdown */
}

/* Menüeinträge links */
.secret-menu-separator {
	flex: 0 0 auto;  /* Verhindert, dass es flexibel wächst oder schrumpft */
	margin-left: 25px; /* optionaler Abstand zur nächsten Gruppe */
    margin-right: 25px; /* optionaler Abstand zur nächsten Gruppe */
}

/* Rahmen um den Container "cl_KC_SecretContentContainer" */
.cl_KC_SecretContentContainer {
    border: 2px solid red; /* Roter Rahmen um den Container */
    padding: 10px; /* Abstand zwischen Inhalt und Rahmen */
    margin: 10px auto; /* Abstand zum äußeren Bereich (zentriert den Container) */
    /*max-width: 1200px; */ /* Optional: Maximale Breite für den Container */
	width: 100%; /* Breite auf 100% der Fensterbreite setzen */
    box-sizing: border-box; /* Sicherstellen, dass Padding und Border im Layout berücksichtigt werden */
}

/* Optional: Für das gesamte Layout des internen Bereichs */
body.secret-body {
    font-family: Arial, sans-serif; 
    /* Der Rahmen um den gesamten Bereich wird hier entfernt, wenn du ihn nur um den Container haben möchtest */
    padding: 0; /* Kein Padding für den gesamten Bereich, nur der Container hat Padding */
    margin: 0; /* Kein Margin für den gesamten Bereich */
    box-sizing: border-box; /* Sicherstellen, dass Padding und Border im Layout berücksichtigt werden */
}


/* Layout für die Anzeige technischer Spezifikationen: */
.tech-specs-container {
	width: 80%;
	margin: 20px auto;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	overflow-y: auto; /* Ermöglicht den Bildlauf */
	height: 300px; /* Feste Höhe der Box */
	background-color: #f9f9f9;
}
.tech-specs-container h2 {
	text-align: left;
}
.tech-specs-container ul {
	list-style-type: none;
	padding: 0;
}
.tech-specs-container li {
	margin: 10px 0;
	font-family: Arial, sans-serif;
	text-align: left; /* Text linksbündig ausrichten */	
}

/* Für die <h3> Überschriften linksbündig */
.tech-specs-container h3 {
    text-align: left; /* Text linksbündig ausrichten */
}

/* Für den Text innerhalb der <pre> Tags linksbündig */
.tech-specs-container pre {
    text-align: left; /* Text linksbündig ausrichten */
    white-space: pre-wrap; /* Zeilenumbrüche werden berücksichtigt */
    word-wrap: break-word; /* Lange Wörter werden umgebrochen */
}


/* Formatierung für die Anzeige der Berechtigungen des angemeldeten Benutzers im internen Bereich: */
.secret-user-details td {
    padding: 8px;
    text-align: left;
}

.secret-user-details td a {
    color: #0078d7;
    text-decoration: none;
}

.secret-user-details td a:hover {
    text-decoration: underline;
}


/* KC-Buttons (schwarz mit weißer Schrift) */
button {
  background-color: #000;         /* Schwarz */
  color: #fff;                    /* Weiße Schrift */
  border: none;                   /* Kein Rahmen */
  border-radius: 6px;             /* Abgerundete Ecken */
  padding: 10px 20px;             /* Innenabstand */
  font-size: 1rem;                /* Schriftgröße */
  cursor: pointer;               /* Mauszeiger als Hand */
  transition: background 0.3s;   /* Weicher Hover-Effekt */
}

button:hover {
  background-color: #333;         /* Etwas helleres Schwarz beim Hover */
}


.KC-Secrect_button {
  align-self: flex-start;
  text-decoration: none;
  background-color: #000;         /* Schwarz */
  color: #fff;                    /* Weiße Schrift */
  border: none;                   /* Kein Rahmen */
  border-radius: 6px;             /* Abgerundete Ecken */
  padding: 10px 20px;             /* Innenabstand */
  font-size: 1rem;                /* Schriftgröße */
  cursor: pointer;               /* Mauszeiger als Hand */
  text-align: center;
  display: inline-block;
  transition: background 0.3s;   /* Weicher Hover-Effekt */
}

.KC-Secret_button input[type="file"] {
  display: none;
}

.KC-Secret_button:hover {
  background-color: #003f8a;
}

.KC-Secret_button-wrapper_left {
  text-align: left;
}

.KC-Secret_button-wrapper_center {
  text-align: center;
} 

.KC-Secret_button-wrapper_right {
  text-align: right;
} 

/* Ende KC-Buttons */  


/* Tabellen mit maximaler Breite und Bildlaufleisten: */
/* Container für die Tabelle mit Bildlauf */
.table-container {
    width: 100%; /* Die Breite des Containers auf 100% setzen */
    max-width: 100%; /* Verhindert, dass der Container über die maximale Breite hinausgeht */
    overflow-x: auto; /* Horizontaler Bildlauf aktivieren */
    padding: 10px; /* Optionaler Abstand um den Container */
    border: 1px solid #ccc; /* Optionaler Rahmen um den Container */
}

/* Sicherstellen, dass die Tabelle den Container nicht überschreitet */
table.secret-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Verhindert, dass die Tabelle ihre Größe anpasst */
}

/* Tabellenzellen und Header anpassen */
.secret-th, .secret-td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
}

.secret-th {
    background-color: #f2f2f2;
}

/* Vermeiden, dass Text über den Zellenrand hinasu gescrieben wird --> Zeilenumbruch in der Zelle aktivieren: */
table, th, td {
    word-wrap: break-word;         /* Für ältere Browser */
    word-break: break-word;        /* Für moderne Browser */
    overflow-wrap: break-word;     /* Standardgemäßes Verhalten */
    white-space: normal;           /* Verhindert no-wrap */
}


/* Downloads: */
.secret-th.id-column {
    width: 50px;
    text-align: center;
}

.secret-th.download-column {
    width: 100px;
}


/* Newsletter-Vorschau: */
.modalNewsletterPreview,
.modalImagePreview {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modalNewsletterPreview.show,
.modalImagePreview.show {
    display: block;
    opacity: 1;
}

.modalNewsletterPreview-content,
.modalImagePreview-content {
    background: #fff;
    margin: 50px auto;
    padding: 20px;
	width: 90%;   /* nimmt 90% der Viewport-Breite ein */
    max-width: 90vw; /*max-width: 90%;*/          /* flexibel, nicht fix 800px */
    max-height: 90vh;        /* lässt Modal fast bildschirmfüllend */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
	text-align: center;       /* Bild zentrieren */
    overflow: auto;           /* Scrollbars bei Bedarf */
    /* overflow: hidden; */        /* verhindert Scrollbars außerhalb des Containers */
    display: block;           /* kein flex */
	/*display: flex;*/
    justify-content: center;
    align-items: center;	
}

.modalNewsletterPreview.show .modalNewsletterPreview-content,
.modalImagePreview.show .modalImagePreview-content {
    transform: translateY(0);
}

.modalNewsletterPreview-close,
.modalImagePreview-close {
    position: absolute;
    top: 12px; right: 20px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
}

.modalNewsletterPreview-body,
.modalImagePreview-body {
    max-height: 80vh;
    overflow-y: auto;
    background: #ffffff;   /* weißer Hintergrund */
    color: #000000;        /* optional, aber sinnvoll: schwarze Schriftfarbe */
	padding: 20px;         /* sorgt für Abstand zum Rand */
}

.modalImagePreview-body img {
    max-width: 100%;         /* Bild passt sich an Container-Breite an */
    max-height: 80vh;        /* Bildhöhe wird nicht größer als Viewport */
    width: auto;
    height: auto;
	display: inline-block; /* wichtig, wenn text-align: center */
}

.log-specs-container {
	width: 80%;
	/*max-width: 600px;*/
	margin: 20px auto;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	overflow-y: auto; /* Ermöglicht den Bildlauf */
	max-height: 800px;        /* doppelte Höhe */
	background-color: #f9f9f9;	
	width: 80%;
    overflow: auto;
    font-size: 12px;
}


/* Formatierung für die Übersicht aller Logeinträge (in den technischen Spezifikationen): */
/* Farbliche Zeilen nach Typ */
.log-row-error {
    color: red;
}
.log-row-information {
    color: blue;
}
.log-row-success {
    color: green;
}
.log-row-default {
    color: black;
}

/* Spaltenbreiten */
.log-col-file {
    width: 200px; /* etwas breiter */
}

.log-col-type {
    width: 80px; /* schmaler */
}

.log-col-logfile {
    width: 150px; /* mittel */
}


/* Logeinträge als Baumansicht: */
.LogTreeView {
    list-style: none; /* entfernt die Standard-Aufzählungszeichen */
    padding-left: 0;  /* komplett linksbündig */
    margin-left: 0;   /* kein zusätzlicher linker Abstand */
    font-size: 12px;  /* wie gewünscht */
	text-align: left; /* Einträge im Baum linksbündig */
}

.LogTreeView > li > strong {
    display: block; /* sorgt dafür, dass der Ordnername in einer eigenen Zeile steht */
    margin-bottom: 5px; /* Abstand zu den Einträgen */
}

/* Die Einträge je Datei (die verschachtelte UL) etwas eingerückt */
.LogTreeView ul {
    list-style: none;  /* kleine Kreise als Aufzählungszeichen */
    margin-left: 20px;   /* Einrückung nach rechts */
    padding-left: 0;     /* padding entfernen, da margin schon einrückt */
    display: none;       /* wie in deinem Code versteckt */
}

/* Optional: Einträge sichtbar machen bei Klick (wenn JS verfügbar ist) */
/*.LogTreeView li:hover > ul {
    display: block;
}*/

/* Farbige Einträge im Baum bleiben erhalten */
.LogTreeView li {
    color: inherit; /* Farbe wird per Inline-Style gesetzt */
}

#logTreeContainer {
	width: 100%;
}

#logTableContainer {
	max-height: 400px;
	overflow: auto;
	font-size: 12px;
	border: 1px solid #ccc;
	padding: 5px;
	background-color: #f9f9f9; /* Optional: identisch zur Baumansicht */
	width: 100%; /* Wichtig für volle Breite */
	box-sizing: border-box; /* Verhindert, dass padding Breite sprengt */
}

/* Für Diagramme bzgl. Bensucher-Statistiken */
canvas {
    width: 100% !important;
    height: 500px !important;
}

/* KC-Layout Filter (Besucherstatistiken) */
/* Horizontale KC-Filterleiste */
.kc-filter-form {
    display: flex;
    align-items: flex-end;
    gap: 20px;          /* Abstand zwischen den Filterfeldern */
    flex-wrap: wrap;    /* Bei kleinen Bildschirmen umbrechen */
    margin-bottom: 20px;
}

.kc-filter-item {
    display: flex;
    flex-direction: column;   /* Label über Input/Select */
    font-size: 0.9rem;
}

.kc-filter-item label {
    margin-bottom: 4px;
    font-weight: 500;
}

.kc-filter-item input,
.kc-filter-item select {
    padding: 6px 12px;
    font-size: 1rem;
    width: 160px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.kc-filter-form button.secret-button {
    height: 38px;           /* passt zu Input/Select */
    margin-top: 20px;       /* für optische Ausrichtung, optional */
}

/* visitor_stats.css oder KC-secret-layout.css */

#chartVisitorsPerDay,
#chartAvgDuration,
#chartLanguagesPerDay {
    width: 100% !important;
    height: 500px !important;
    border: 1px solid black;
    background-color: white;
}

/* Filter-Formular Layout */
.kc-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    margin-bottom: 20px;
}
.kc-filter-item {
    display: flex;
    flex-direction: column;
}
.kc-filter-item label {
    margin-bottom: 5px;
    font-weight: bold;
}

/* Suchfeld mittig über der Tabelle (Besucherstatistiken) */
#visitorTable_filter {
    float: none;         /* float entfernen */
    text-align: center;  /* mittig ausrichten */
	margin-top: 20px; /* Abstand zur Tabellenüberschrift */
    margin-bottom: 20px; /* Abstand zur Tabellenüberschrift */
}

/* Optional: input-Feld selbst etwas breiter machen */
#visitorTable_filter input {
    width: 200px;
    display: inline-block;
}

#exportButtons {
    text-align: center;
    margin-bottom: 20px;
}

.KC-secret-button-full-filter {
    width: 100%;
    box-sizing: border-box; /* damit Padding innerhalb der Breite bleibt */
}

.config-buttons {
	display: flex;
	gap: 10px; /* Abstand zwischen den Buttons */
	margin-top: 10px;
}
.config-buttons .secret-button {
	flex: 1; /* gleiche Breite für beide Buttons */
}

/* Tabs für Diagramme bei Besucherstatistiken: */
.tab-container {
    margin-top: 20px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.tab-btn {
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #aaa;
    background-color: #ccc; /* mittelgrau = nicht ausgewählt */
    color: black;
    transition: background-color 0.2s, color 0.2s;
}

.tab-btn.active {
    background-color: #007bff; /* blau = ausgewählt */
    color: white;
}

.tab-btn.disabled {
    background-color: #eee; /* hellgrau = nicht verfügbar */
    color: white;
    cursor: not-allowed;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


/* ================= Video.js Player Anpassungen ================= */

/* Alle Video.js Player, generelle Einstellungen */
.video-js {
    width: 100% !important;     /* Player füllt die Breite des Containers */
    max-width: 100%;            /* keine horizontale Überbreite */
    height: auto !important;    /* Höhe passt sich proportional an */
    margin: 10px 0;             /* Abstand oben und unten */
    border: 1px solid #ccc;     /* optionaler Rahmen */
    border-radius: 6px;         /* leicht abgerundete Ecken */
    box-sizing: border-box;     /* Padding/Rahmen berücksichtigt */
}

/* ================= Großer Player auf tutorials.php (16:9) ================= */
.KC-video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Seitenverhältnis */
    height: 0;
    overflow: hidden;
    background: #000; /* schwarzer Hintergrund */
}

.KC-video-responsive::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
}

.KC-video-responsive video,
.KC-video-responsive .video-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* ================= Kleiner Vorschau-Player ================= */
.video-preview-container {
    width: 100%;               /* volle Breite des Containers */
    max-width: 720px;          /* maximale Breite */
    margin: 20px auto;         /* zentriert horizontal */
    height: 405px;             /* 16:9 Verhältnis zu 720px */
    background-color: #000;    
    border-radius: 8px;        
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    overflow: hidden;
}

.video-preview-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* skaliert Video sauber */
    border-radius: 8px;
}

/* ================= Tabellen-Anpassungen ================= */
.table-container {
    overflow-x: auto;          /* horizontale Scrollleiste */
    overflow-y: auto;          /* vertikale Scrollleiste */
    max-height: 400px;         /* maximale Höhe */
    margin-bottom: 20px;
}


/* DataTables Scroll und responsive */
.dataTables_scrollBody {
    max-height: 300px !important; /* maximale Höhe für Scroll */
}




/* Responsive Anpassung: kleine Bildschirme */
@media (max-width: 768px) {
    #mainVideoPlayer,
    #previewVideoPlayer {
        width: 100% !important;  /* volle Breite */
        height: auto !important; /* proportional skalieren */
    }
}

/* Videoplayer für Tutorials: */
.video-main-container {
    width: 80%;
    margin: 20px auto;
	max-width: 1400px; /* optional */
}

/*******************************************
 * TUTORIAL-BEREICH – Layout & Darstellung
 *******************************************/

/* Hauptlayout: 75% links Player + Beschreibung / 25% rechts Listen */
.tutorial-layout {
    display: flex;
    gap: 20px;
    height: auto;
    min-height: calc(100vh - 280px); /* Header/Footer berücksichtigen */
}

/***************
 * Linke Spalte
 ***************/
.tutorial-left-column {
    flex: 3;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Videobereich vollständig im Container sichtbar */
.tutorial-video-wrapper {
    width: 100%;
    height: 77wh; /*52vh;                  /* Optimiert, ragt nicht mehr raus */
    margin-bottom: 20px;
    box-sizing: border-box;
	overflow: hidden;
	max-height: 80vh; /* Player maximal 80% der Viewport-Höhe */
}

.KC-video-responsive {
    width: 100%;
    padding-bottom: 77% /* 56.25%; /* 16:9 Verhältnis */
    height: auto; /* Höhe wird durch padding-bottom definiert */
}

/* Fehlertext */
.tutorial-video-error {
    margin-top: 10px;
    padding: 10px;
    background: #ffdddd;
    border: 1px solid #aa0000;
    color: #aa0000;
    font-weight: bold;
    border-radius: 5px;
    display: none;
}

/* Titel – feste Höhe */
.tutorial-video-title {
    margin-top: 10px;
    font-size: 22px;
    font-weight: bold;
    min-height: 30px;              /* IMMER sichtbar */
    padding: 5px 2px;
    box-sizing: border-box;
	text-align: left;			   /* Text linksbündig */
}

/* Beschreibung – feste Höhe, Scrollbar, Zeilenumbruch */
.tutorial-video-description {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.45;
    padding: 10px;
    box-sizing: border-box;

    border: 1px solid #ccc;
    border-radius: 6px;

    height: 22vh;                 /* FESTE Höhe für stabilen Aufbau */
    overflow-y: auto;             /* Scrollbar */
    overflow-wrap: break-word;    /* Zeilenumbruch */
    word-break: break-word;       /* Fallback */
    background: #fafafa;
	text-align: left;			   /* Text linksbündig */
}

/***************
 * Rechte Spalte
 ***************/
.tutorial-right-column {
    flex: 1;                      /* SCHMÄLER gemacht! */
    display: flex;
    flex-direction: column;

    max-width: 260px;             /* HARTE Begrenzung gegen Überlauf */
    box-sizing: border-box;
	
	/* NEU: alle Elemente flexibel behandeln */
    justify-content: flex-start; /* optional */
}

/* Überschriften */
.tutorial-side-heading {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: bold;
}

/* Filterfelder */
.tutorial-side-filter {
    width: 100%;
    margin-bottom: 10px;
    padding: 6px 8px;
    box-sizing: border-box;
}

/* Scrollbare Listen – NICHT mehr über den Rahmen hinausragend */
.tutorial-side-list {
	flex: 1;             /* nimmt den restlichen Platz ein */
    min-height: 100px;   /* optional, verhindert zu kleine Höhe */
    /* height: 25vh;                 /* etwas kleiner, passt besser */
    overflow-y: auto;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    padding: 5px;
    box-sizing: border-box;
}

/* Tabellen-Optimierung */
#playlistTable .secret-td,
#videoTable .secret-td {
    padding: 6px 4px;
}

.tutorial-row:hover,
.playlist-row:hover {
    background-color: #eee;
    cursor: pointer;
}

/* Playlist in der Liste ausgewählt --> Playlist markieren: */
/* Vdeo/Tutorial in der Liste ausgewählt --> Video/Tutorial markieren: */
/* Vorrang für Tutorial/Playlist Auswahl */
.playlist-row.selected,
.tutorial-row.selected {
    background-color: #007bff !important;
    color: white !important;
    font-weight: bold;
}






/* Hover-Hervorhebung */
.secret-row:hover {
    background-color: #e5e5e5 !important;
    cursor: pointer;
}

/* Markierte Zeile */
.secret-row.selected {
    background-color: #4c8bf5 !important;
    color: white !important;
    font-weight: bold;
}

/* Settings-Icon */
.tutorial-settings {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 50;
}
.tutorial-settings:hover {
    opacity: 1;
}

/* Popup */
.tutorial-settings-popup {
    position: absolute;
    right: 10px;
    top: 40px;
    background: white;
    border: 1px solid #ccc;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 6px;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
}

/* tote Tutorials */
.tutorial-dead {
    color: #888 !important;
    opacity: 0.4;
    pointer-events: none;
}

#videoThumbnailContainer {
    width: 320px;
	height: 180px;
    margin: 0 auto 10px auto;
    text-align: center;
}

#videoThumbnail {
    border: 1px solid #ccc;
    display: block;
    margin-bottom: 10px;
	border: 1px solid #ccc;
	width: 320px;       /* gewünschte Breite */
    height: auto;       /* Höhe proportional */
    max-height: 180px;   /* optional */
}