/* ###########################################################################*/
/* ITEM LIST */
/* ###########################################################################*/

.gt-size-item-titel {
    font-size: 12px;
}

.gt-size-item-card-body {
    font-size: 14px;
}

/* Grid-Layout für die Boxen */
#listMainContent {
    display: flex;
    flex-wrap: wrap;
}

/* Box-Design */
.itemContent {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

@media (max-width: 1024px) {
    .itemContent {
        height: 230px; /* Angepasste Höhe für mobile Geräte */
    }
}

.itemContent:hover {
    /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);*/
    transition: transform 0.3s ease-in-out;
}

/* Beschreibung immer unten sichtbar */
.itemDescription {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 10px;
    font-size: 12px;
/*    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;    */
}

.itemDescription2 {
    font-size: 12px;
}

/* Details-Bereich (erscheint bei Hover) */
.itemDetails {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    z-index: 3;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Titel und Zusatzinfos */
.itemTitle {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.more {
    margin-top: 12px;
}

/* Linie unter den Metadaten */
.separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 8px 0;
}

/* Metadata */
.inlineList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.inlineList li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 5px; /* Abstand zwischen Icon und Text */
}

/* Zeit rechtsbündig */
.itemMetaData {
    justify-content: space-between;
    display: flex;
    width: 100%;
}

.itemTime {
    margin-left: auto; /* Rechtsbündig positioniert */
    text-align: right;
}

.itemStatistics {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Links ausgerichtetes erstes Icon */
.left-aligned {
    text-align: left;
    flex: 1 0 auto; /* Links verankert */
}

/* Rechts ausgerichtetes letztes Icon */
.right-aligned {
    text-align: right;
}

/* Mittlere Icons gleichmäßig verteilt */
.itemStatistics li:not(.left-aligned):not(.right-aligned) {
    text-align: center;
    flex: 1 0 auto; /* Gleichmäßige Verteilung */
}

/* Hover-Effekt für Details */
.itemContent:hover .itemDetails {
    opacity: 1; /* Details einblenden */
}

/* Beschreibung wird beim Hover nach oben verschoben */
.itemContent:hover .itemDescription {
    bottom: 100%; /* Verschiebt die Beschreibung aus dem Sichtbereich */
    opacity: 0; /* Versteckt die Beschreibung */
    /*transition: all 0.3s ease-in-out;   */
}



/* Modal-Overlay */
.gk-item-modal {
    display: none; /* Standardmäßig versteckt */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Halbtransparenter Hintergrund */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Modal-Inhalt */
.gk-item-modal .modal-content {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 300px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: Arial, sans-serif;
}


/* Kopfzeile des Modals */
.gk-item-modal .modal-content h2 {
    margin-top: 0;
    font-size: 18px;
    color: #fff;
    border-bottom: 1px solid #444; /* Trennlinie */
    padding-bottom: 10px;
}

/* Liste im Modal */
.gk-item-modal .modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #1a1a1a; /* Gleiche Hintergrundfarbe wie der Modal-Inhalt */
    border-radius: 5px;
    overflow: hidden; /* Überschüssige Inhalte abschneiden */
}

/* Listeneinträge */
.gk-item-modal .modal-content ul li {
    display: flex; /* Flexbox für die Ausrichtung von Icon und Text */
    align-items: center; /* Vertikale Zentrierung */
    padding: 10px 10px; /* Innenabstand */
    margin: 0;
    color: #fff; /* Weiße Schrift */
    font-size: 14px; /* Textgröße */
    cursor: pointer; /* Hand-Cursor bei Hover */
    transition: background-color 0.2s ease-in-out; /* Sanfter Hover-Effekt */
    width: 100%; /* Füllt die gesamte Breite aus */
    box-sizing: border-box; /* Padding in der Breite einrechnen */
}

/* Hover-Effekt für Listeneinträge */
.gk-item-modal .modal-content ul li:hover {
    background-color: #333; /* Leicht aufgehellter Hintergrund */
}

/* Trennlinien zwischen Listeneinträgen */
.gk-item-modal .modal-content ul li:not(:last-child) {
    border-bottom: 1px solid #444; /* Dezente Trennlinie */
}

/* Icons innerhalb der Listeneinträge */
.gk-item-modal .modal-content ul li i {
    margin-right: 10px; /* Abstand zwischen Icon und Text */
    font-size: 16px; /* Größe des Icons */
    color: #fff; /* Icon-Farbe passend zum Text */
    flex-shrink: 0; /* Verhindert, dass das Icon skaliert wird */
}

/* Links innerhalb der Listeneinträge */
.gk-item-modal .modal-content ul li a {
    display: flex; /* Flexbox auch für den Link */
    align-items: center; /* Zentrierung von Icon und Text */
    text-decoration: none; /* Entfernt Unterstreichung */
    color: inherit; /* Verwendet die Farbe des übergeordneten Elements */
    width: 100%; /* Füllt den Listeneintrag aus */
    padding: inherit; /* Übernimmt das Padding des Listeneintrags */
}

/* Schließen-Button */
.gk-item-modal .modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff; /* Weiße Schrift */
    cursor: pointer;
}

/* Modal-Aktionen */
.modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px; /* Abstand zwischen den Buttons */
    margin-top: 20px;
}

/* Allgemeine Button-Stile */
.modal-actions button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Bestätigungs-Button (grün) */
.modal-actions .btn-confirm {
    background-color: #28a745; /* Grün */
    color: #fff;
}

.modal-actions .btn-confirm:hover {
    background-color: #218838; /* Dunkleres Grün */
    transform: scale(1.05); /* Leichter Vergrößerungseffekt */
}

/* Abbrechen-Button (rot) */
.modal-actions .btn-cancel {
    background-color: #dc3545; /* Rot */
    color: #fff;
}

.modal-actions .btn-cancel:hover {
    background-color: #c82333; /* Dunkleres Rot */
    transform: scale(1.05); /* Leichter Vergrößerungseffekt */
}



/* Flexibles Layout der Filterleiste */
.filter-bar {
  display: flex;
  gap: 10px; /* Reduziert den Abstand zwischen den Buttons */
  background-color: #1e1f2f;
  padding: 10px 10px;
  border-radius: 8px;
  flex-wrap: wrap; /* Ermöglicht Umbrechen der Buttons */
  justify-content: flex-start; /* Buttons bleiben linksbündig */
}

/* Responsivität für kleinere Bildschirme */
@media (max-width: 768px) {
  .filter-bar {
    gap: 8px; /* Weniger Abstand auf kleineren Geräten */
  }

  .filter-button {
    padding: 6px 20px 6px 10px; /* Kleinere Buttons auf kleinen Bildschirmen */
  }
}

@media (max-width: 480px) {
  .filter-bar {
    gap: 5px; /* Noch engerer Abstand bei Smartphones */
  }
}


.filter-button {
  background: #2a2c3e;
  color: white;
  padding: 8px 25px 8px 15px; /* Mehr Padding rechts für den Pfeil */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  position: relative; /* Für das Pseudo-Element */
}

.filter-button::after {
  content: '▼'; /* Unicode-Pfeil nach unten */
  font-size: 12px;
  color: white;
  position: absolute;
  right: 10px; /* Abstand vom rechten Rand */
  top: 50%;
  transform: translateY(-50%); /* Vertikale Zentrierung */
}

.filter-button:hover {
  background: #2765c5;
}




.filter-dropdown-item-gk.open .dropdown-menu-item-gk {
  display: block;
}

.filter-dropdown-item-gk.open .dropdown-menu-item-size-gk {
  display: flex;
}

.filter-dropdown-item-gk.open .dropdown-menu-item-brand-gk  {
  display: block;
}



.dropdown-menu-item-gk {
    display: none;
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #fd5504;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
  max-height: 400px; /* Maximale Höhe */
  overflow-y: auto; /* Scrollbar bei zu vielen Elementen */
}

.dropdown-brand {
    min-width: 10rem;

}

.dropdown-item-gk {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
  cursor: pointer;
}
.dropdown-item-gk:hover, .dropdown-item-gk:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item-gk.active, .dropdown-item-gk:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item-gk.disabled, .dropdown-item-gk:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}



/* Dropdown-Abschnitte */
.dropdown-section {
  margin-bottom: 15px; /* Abstand zwischen Abschnitten */
}

.dropdown-section-title {
  color: white;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block; /* Block für Abstand */
}

/* Container */
.dropdown-items-grid {
  display: flex;
  flex-wrap: wrap; /* Elemente umbrechen, falls nötig */
  gap: 5px; /* Abstand zwischen den Items */
  justify-content: space-evenly; /* Gleichmäßige Verteilung mit gleichen Abständen */
  width: 100%; /* Nimmt die volle Breite ein */
  margin: 0 auto; /* Zentrierung */
  box-sizing: border-box; /* Verhindert Überlauf */
}

.dropdown-items-grid-min {
  display: flex;
  flex-wrap: wrap; /* Elemente umbrechen, falls nötig */
  gap: 5px; /* Abstand zwischen den Items */
  width: 100%; /* Nimmt die volle Breite ein */
  box-sizing: border-box; /* Verhindert Überlauf */
}


/* 7 Blöcke pro Zeile */
.dropdown-item-size-gk {
  flex: 1 1 calc(14.2857% - 5px); /* 7 Blöcke pro Zeile */
  padding: 5px;
  color: white;
  cursor: pointer;
  border: 1px solid #444;
  background: #2a2c3e;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box; /* Verhindert Überlauf */
}


/* 4 Blöcke pro Zeile */
.dropdown-item-size-gk-4 {
/*  flex: 0 1 calc(25% - 10px); /* 4 Blöcke pro Zeile */
  padding: 5px;
  color: white;
  cursor: pointer;
  border: 1px solid #444;
  background: #2a2c3e;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box; /* Verhindert Überlauf */
  min-width: calc(25% - 10px); /* Mindestbreite für 4 gleichmäßige Blöcke */
}

/* 4 Blöcke pro Zeile */
.dropdown-item-size-gk-min {
  padding: 5px;
  color: white;
  cursor: pointer;
  border: 1px solid #444;
  background: #2a2c3e;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box; /* Verhindert Überlauf */
  min-width: calc(16.66% - 5px); /* Mindestbreite für 4 gleichmäßige Blöcke */
}

/* Hover und Selektiert */
.dropdown-item-size-gk:hover,
.dropdown-item-size-gk-4:hover,
.dropdown-item-size-gk-min:hover {
  background: #2765c5;
}
.dropdown-item-size-gk.selected,
.dropdown-item-size-gk-4.selected,
.dropdown-item-size-gk-min.selected {
  background: #4caf50; /* Hervorhebung */
  color: white;
}

/* Standardzustand des Dropdown-Menüs (geschlossen) */
.dropdown-menu-item-size-gk {
  display: none;
  position: absolute;
  background-color: var(--bs-body-bg);
  border-radius: 8px;
  padding: 5px;
  z-index: 10;
  max-height: 400px; /* Maximale Höhe */
  overflow-y: auto; /* Scrollbar bei zu vielen Elementen */
  width: 420px; /* Breite des Dropdowns */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap; /* Umbrechen der Items */
  gap: 5px; /* Abstand zwischen den Items */
}


span.color-circle {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin-right: 5px;
        border: none;
    }








/* Container für aktive Filter */
.active-filters {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap; /* Ermöglicht Umbrüche bei Platzmangel */
  gap: 10px; /* Gleichmäßiger Abstand zwischen Gruppen */
  align-items: flex-start; /* Startausrichtung für Gruppen */
}

/* Gruppen von Filtern */
.filter-group {
  display: flex;
  flex-wrap: wrap; /* Erlaubt Umbrüche innerhalb der Gruppe */
  gap: 10px; /* Abstand zwischen den Filtern innerhalb einer Gruppe */
  align-items: center;
  min-width: 0; /* Gruppengröße flexibel halten */
}

/* Einzelne Filter-Elemente */
.active-filter {
  display: flex;
  align-items: center;
  gap: 5px; /* Abstand zwischen Text und Symbol (z.B. "X") */
  background-color: #2765c5;
  color: white;
  padding: 5px 5px;
  border-radius: 10px;
  font-size: 13px;
  white-space: nowrap; /* Verhindert Zeilenumbrüche innerhalb des Filters */
  flex-shrink: 0; /* Verhindert, dass Filter zu klein werden */
}






.active-filter .exclude,
.active-filter .remove,
.active-filter .include {
  cursor: pointer;
  display: inline-flex; /* Macht das Element blockähnlich */
  justify-content: center; /* Zentriert den Inhalt */
  align-items: center;
  width: 20px; /* Gleiche Breite wie Höhe */
  height: 20px; /* Runde Buttons */
  background-color: #ffaa00;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1; /* Zentrierung von Symbolen */
  border:none;
}

.active-filter .exclude {
  margin-left: 5px;
}

.active-filter .remove {
  background-color: #ff4c4c;
}

.active-filter .include {
  background-color: #4caf50;
  margin-left: 5px;
}

.active-filter .exclude:hover,
.active-filter .remove:hover,
.active-filter .include:hover {
  opacity: 0.8;
}


.gk-brand-dropdown-container-item {
    position: relative;
    width: 100%; /* Passt sich der Breite des Containers an */
    max-height: 400px;
}

.gk-brand-search-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #555; /* Rand für bessere Sichtbarkeit */
    border-radius: 4px;
    background-color: #333;
    color: #fff;
}

/* Standardzustand des Dropdown-Menüs (geschlossen) */
.dropdown-menu-item-brand-gk {
  display: none;
  position: absolute;
  background-color: var(--bs-body-bg);
  border-radius: 8px;
  padding: 5px;
  z-index: 10;
  height: 400px; /* Maximale Höhe */
  overflow-y: auto; /* Scrollbar bei zu vielen Elementen */
  width: 420px; /* Breite des Dropdowns */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap; /* Umbrechen der Items */
  gap: 5px; /* Abstand zwischen den Items */
}

.gk-brand-dropdown-menu-item {
    display: none; /* Startet versteckt */
    position: absolute;
    top: 100%; /* Direkt unter das Eingabefeld setzen */
    left: 0;
    width: 100%; /* Gleiche Breite wie das Eingabefeld */
    background-color: #2d2d3d;
    height: auto; /* Reduziertes Maximal-Scrolling */
    overflow-y: auto; /* Ermöglicht Scrollen bei Überlauf */
    border-radius: 4px;
    margin-top: 4px;
    padding: 5px;
    z-index: 0; /* Sicherstellen, dass es über anderen Elementen liegt */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Schatten für besseres Design */
}

.gk-brand-dropdown-item {
    padding: 8px;
    background-color: #444;
    color: #bbb;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 5px;
}

.gk-brand-dropdown-item:hover {
    background-color: #555;
    color: #fff;
}



.gk-brand-section-title {
	font-size: 12px;
	color: #777;
	margin-top: 10px;
	font-weight: bold;
	text-transform: uppercase;
}

/* Responsive Verhalten */
@media (max-width: 768px) {
  .dropdown-menu-item-size-gk {
    width: 90%; /* Nimmt 90% der Breite des Bildschirms ein */
    left: 50%; /* Zentriert horizontal */
    transform: translateX(-50%); /* Korrekt ausrichten */
  }

  .dropdown-menu-item-brand-gk {
    width: 90%; /* Nimmt 90% der Breite des Bildschirms ein */
    left: 50%; /* Zentriert horizontal */
    transform: translateX(-50%); /* Korrekt ausrichten */
  }
}

@media (max-width: 480px) {
  .dropdown-menu-item-size-gk {
    width: 95%; /* Nimmt fast die gesamte Breite des Bildschirms ein */
    left: 50%; /* Zentriert horizontal */
    transform: translateX(-50%); /* Korrekt ausrichten */
  }

  .dropdown-menu-item-brand-gk {
    width: 95%; /* Nimmt fast die gesamte Breite des Bildschirms ein */
    left: 50%; /* Zentriert horizontal */
    transform: translateX(-50%); /* Korrekt ausrichten */
  }
}


/* ###########################################################################*/
/* ITEM EDIT */
/* ###########################################################################*/


.tags-input {
	--bs-form-check-bg: var(--bs-body-bg);
	display: flex;
	flex-wrap: wrap;
	border: var(--bs-border-width) solid var(--bs-border-color);
	background-color: var(--bs-form-check-bg);
	background-image: var(--bs-form-check-bg-image);
	padding: 5px;
	width: 100%;
	cursor: text;
	border-radius: 5px;
}

.tags-input input {
	--bs-form-check-bg: var(--bs-body-bg);
	border: none;
	outline: none;
	flex: 1;
	min-width: 50px;
	background-color: var(--bs-form-check-bg);
	background-image: var(--bs-form-check-bg-image);
}

.tag {
	display: flex;
	align-items: center;
	background-color: #fa5b07;
	color: white;
	padding: 5px;
	margin: 2px;
	border-radius: 5px;
	font-size: 14px;
}

.tag-close {
	margin-left: 5px;
	cursor: pointer;
	font-weight: bold;
}

/* Live-Suche Dropdown */
.autocomplete-suggestions {
	/*border: 1px solid #ddd;*/
	max-height: 150px;
	overflow-y: auto;
	width: 93%;
	position: absolute;
	background-color: var(--bs-secondary-border-subtle);
	z-index: 1000;
	font-size: 14px;
	/*border: 1px solid var(--bs-body-color);*/
}

.suggestion-item {
	padding: 8px;
	cursor: pointer;
}

.suggestion-item:hover {
	background-color: var(--bs-light-bg-subtle);
}

/* Gearkinks Select Box Farbe */


.dropdown-gk {
	position: relative;
 /*	display: inline-block; */
 /* width: 250px; */
    width: 75%;
	font-size: 14px;
}

#dropdownLabel {
	display: inline-flex;
	align-items: center;
	padding: 5px 8px;
	background-color: #333;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	min-width: 200px;
	max-width: 100%;
	box-sizing: border-box;
	flex-wrap: wrap;
	gap: 5px;
	outline: none;
	/* Entfernt den Fokusrahmen */
	position: relative;
	/* Damit das Pseudo-Element innerhalb des Labels positioniert ist */
}

/* Pfeilsymbol neben dem Dropdown-Label */
#dropdownLabel::after {
	content: "▼";
	margin-left: auto;
	color: #bbb;
	font-size: 12px;
}

.dropdownMenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	max-height: 300px;
	overflow-y: auto;
	background-color: #222;
	color: #fff;
	border: 1px solid #444;
	border-radius: 5px;
	display: none;
	z-index: 1;
	box-sizing: border-box;
}

.dropdownMenu .item {
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: background 0.3s;
	position: relative;
	outline: none;
	/* Entfernt den Fokusrahmen */

}

.dropdownMenu .item:hover {
	background-color: #444;
}

.dropdownMenu .item.selected {
	background-color: #333;
}

.dropdownMenu .item .preview {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 8px;
	box-sizing: border-box;
	outline: none;
	/* Entfernt den Fokusrahmen */
	border: none;
}

/* Grüner Punkt als Auswahl-Indikator */
.dropdownMenu .item .selected-indicator {
	position: absolute;
	right: 10px;
	width: 8px;
	height: 8px;
	background-color: #00ff00;
	/* Grüner Punkt */
	border-radius: 50%;
	display: none;
	/* Wird nur angezeigt, wenn ausgewählt */
}

.dropdownMenu .item.selected .selected-indicator {
	display: inline-block;
}

/* Entferne den roten Fokusrahmen auf allen interaktiven Elementen */
.dropdown-gk *:focus,
.dropdown-gk *:active {
	outline: none !important;
	border: none !important;
	box-shadow: none !important;
}


/* Gearkinks Select Box Größe */

.gk-size-container {
	position: relative;
	width: 200px;
}

.gk-size-select-box {
	display: flex;
	align-items: center;
	background-color: #333;
	color: #bbb;
	padding: 5px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
}

.gk-size-select-box:hover {
	background-color: #444;
}

.gk-size-select-box::after {
	content: "▼";
	margin-left: auto;
	color: #bbb;
}

.gk-size-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 300px;
	background-color: #333;
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.gk-size-dropdown.active {
	display: block;
}

.gk-size-section-title {
	font-size: 12px;
	color: #777;
	margin: 10px 0 5px;
}

.gk-size-option-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
}

.gk-size-option {
	padding: 5px;
	background-color: #444;
	color: #bbb;
	text-align: center;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
}

.gk-size-option:hover {
	background-color: #555;
	color: white;
}

.gk-size-selected-option {
	background-color: #666;
	color: white;
}

/* Unsichtbares Select-Element */
.gk-size-hidden-select {
	display: none;
}

/* Gearkinks Select Box Marke / Modell */

.gk-brand-dropdown-container {
	position: relative;
	width: 300px;
/*	margin-top: 20px;    */
}

.gk-brand-dropdown-box,
.gk-brand-search-input {
	width: 100%;
	padding: 5px;
	border-radius: 5px;
	border: none;
	background-color: #333;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gk-brand-dropdown-menu {
	display: none;
	position: absolute;
	width: 100%;
	background-color: #2d2d3d;
	max-height: 400px;
	overflow-y: auto;
	border-radius: 5px;
	margin-top: 5px;
	padding: 5px;
	z-index: 1;
}

.gk-brand-dropdown-item {
	padding: 8px;
	background-color: #444;
	color: #bbb;
	border-radius: 4px;
	cursor: pointer;
	margin-bottom: 5px;
}

.gk-brand-dropdown-item:hover {
	background-color: #555;
	color: #fff;
}

.gk-brand-section-title {
	font-size: 12px;
	color: #777;
	margin-top: 10px;
	font-weight: bold;
	text-transform: uppercase;
}


/* Gearkinks Select Box Modellnummer */

.gk-modelno-dropdown-container {
	position: relative;
	width: 250px;
/*	margin-top: 20px;      */
}

.gk-modelno-dropdown-box,
.gk-modelno-search-input {
	width: 100%;
	padding: 5px;
	border-radius: 5px;
	border: none;
	background-color: #333;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gk-modelno-dropdown-menu {
	display: none;
	position: absolute;
	width: 100%;
	background-color: #2d2d3d;
	max-height: 400px;
	overflow-y: auto;
	border-radius: 5px;
	margin-top: 5px;
	padding: 5px;
	z-index: 1;
}

.gk-modelno-section-title {
	font-size: 12px;
	color: #bbb;

	font-weight: bold;
	text-transform: uppercase;
}

.gk-model-dropdown-item {
	display: flex;
	background-color: #222;
	color: #bbb;
	align-items: flex-start;
	padding: 10px;
	gap: 15px;
	cursor: pointer;
	border-bottom: 1px solid #ddd;
}

.gk-model-dropdown-item:hover {
	background-color: #333;
	color: #fff;
}

.model-result-image {
	width: 60px;
	height: 60px;
	border-radius: 5px;
	object-fit: cover;
}

.model-result-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.model-number {
	font-weight: bold;
}

.brand-model {
	color: #666;
	font-size: 14px;
}

.colors-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 5px;
}

.color-item {
	display: flex;
	align-items: center;
	gap: 5px;
}

.color-circle {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: none;
}

.color-name {
	font-size: 12px;
	color: #666;
}


.gk-Error {
    color: red;
    font-size: 13px;
}



/* GEARKINKS EDITOR */


 /* Allgemeiner Stil für den Editor */
  #editor-container {
    height: 200px;
    font-size: 15px;
    border-radius: 0 0 10px 10px; /* Unten links und rechts abgerundet */
  border: 1px solid #555; /* Rahmenfarbe */
  border-top: none; /* Kein doppelter Rahmen zwischen Toolbar und Editor */
  }

/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  height: 100%;
  margin: 0px;
  position: relative;
  color: white;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: white;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: #ededed;
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #fd5504;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #fd5504;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #fd5504;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border-radius: 10px 10px 0 0; /* Oben links und rechts abgerundet */
  border: 1px solid #555; /* Rahmenfarbe */
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
  margin-bottom: 0; /* Keine Lücke zwischen Toolbar und Editor */
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}


.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #fd5504;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}




/* ###########################################################################*/
/* ITEM EDIT PICTURE */
/* ###########################################################################*/

body.dragging {
    user-select: none; /* Verhindert Textauswahl */
    cursor: move; /* Optional: Cursor während des Drag-and-Drop */
}
    #progress {
        width: 100%;
        background-color: #f3f3f3;
        border: 1px solid #ccc;
        display: none;
    }
    #progress-bar {
        width: 0;
        height: 20px;
        background-color: #4caf50;
        text-align: center;
        line-height: 20px;
        color: white;
    }
    #status-message {
        margin-top: 10px;
        font-weight: bold;
        color: green;
        display: none;
    }
    #status-message.error {
        color: red;
    }

    /* Allgemeines Container-Styling */
    .thumb-container {
        width: 160px;
        padding: 10px;
/*        border: 1px solid #ddd;                                               */
        border-radius: 5px;
        text-align: center;
        display: inline-block;
        vertical-align: top;
        margin: 10px;
        background-color: #f9f9f9;
        height: 250px; /* Einheitshöhe für alle */
        box-sizing: border-box;
        position: relative;
    }

    /* Bildbereich */
    .thumb {
        position: relative;
        width: 100%;
        height: 170px;
        overflow: visible; /* Sichtbarkeit während des Drag-and-Drop erhöhen */
        touch-action: none; /* Deaktiviert Konflikte durch Scroll-Gesten */
        user-select: none; /* Verhindert Textauswahl während des Drags */

    }

    /* Aktives Element während des Drags */
    .thumb:active {
        cursor: move;
    }

    .thumb img.thumb-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover; /* Einheitliches Zuschneiden der Bilder */
        display: block;
        margin: 0 auto;
        padding-top: 30px;

    }

    /* Entfernen-Button für das Bild */
    /* .thumb .remove {
        position: absolute;
        top: 5px;
        right: 5px;
        background: rgba(255, 0, 0, 0.8);
        color: white;
        border: none;
        cursor: pointer;
        font-size: 12px;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        line-height: 16px;
        text-align: center;
    }*/

    /* Upload-Status Styling */
    .upload-status {
        margin-top: 10px;
        font-size: 14px;
    }

    /* FSK18 Checkbox Styling */
    .fsk-checkbox-container {
        margin-top: 10px;
        font-size: 14px;
    }

    /* Erfolgs-Check-Häkchen */
    .success-check {
        color: green;
        font-size: 20px;
        display: none;
        position: absolute;
        top: 5px;
        left: 5px;
    }

    /* Hinweisteil oben und volle Breite */
    .sort-hint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(76, 175, 80, 0.8); /* Anpassen der Hintergrundfarbe */
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    padding: 5px 0;
    box-sizing: border-box;
    border-radius: 5px; /* Hier werden die runden Ecken hinzugefügt */
}

.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 0.1em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    100% {
        transform: rotate(360deg);
    }
}

/* Stil für das Drag-Handle */
.drag-handle-container {
    text-align: center; /* Zentriert das Icon */
    margin: 5px 0; /* Abstand zwischen Bild und FSK18 */
}

.drag-handle {
    cursor: move; /* Zeigt eine Hand für Drag-and-Drop */
    font-size: 20px; /* Größe des Icons anpassen */
    color: #666; /* Farbe des Icons */
    display: inline-block; /* Inline für bessere Zentrierung */
}

.drag-handle:hover {
    color: #333; /* Farbe bei Hover */
}

/* Stil für das Ghost-Element */
.sortable-ghost {
    opacity: 0.7;
    background-color: #f5f5f5;
    border: 2px dashed #ddd;
    transform: scale(1.05);
    z-index: 1000;
}

/* Dragging-Stil */
.sortable-drag {
    opacity: 1;
    transform: scale(1.02);
    z-index: 1000;
}

.fsk-checkbox-container {
    position: relative;
    margin: 5px 0;
}













/* FEED */


#activities { margin-bottom: 20px; }
        .activity { border: 1px solid #ccc; padding: 10px; margin: 5px; }
        #loadMore { cursor: pointer;}
        #noMoreActivities { color: red; display: none; }

/* Hauptcontainer */
.gk-feed-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px;
  background-color: #1b1b2f;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-size: 14px;
}

/* Tabs in gk-feed-main */
.gk-feed-main .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.gk-feed-main .tabs button {
  padding: 5px 5px;
  border: none;
  border-radius: 10px;
  background-color: #2f2f3f;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
}

.gk-feed-main .tabs button:hover {
  background-color: #3a3a4f;
}

.gk-feed-main .tabs button.active {
  background-color: #4f4f6f;
}

/* Trennlinie */
.gk-feed-main .divider {
  width: 2px;
  background-color: #3a3a4f;
  margin: 0 15px;
  align-self: stretch;
}

/* Posten Button */
.gk-feed-main .post-button {
  padding: 5px 5px;
  border: none;
  border-radius: 10px;
  background-color: #2765c5;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  align-self: center;
}

.gk-feed-main .post-button:hover {
  background-color: #0056b3;
}

/* @media (max-width: 768px) {
  .gk-feed-main {
    flex-direction: column;
    align-items: stretch;
  }

  .gk-feed-main .tabs {
    margin-bottom: 10px;
  }

  .gk-feed-main .divider {
    display: none;
  }

  .gk-feed-main .post-button {
    align-self: flex-end;
  }
}  */

.loading-spinner {
    text-align: center;
    font-size: 30px; /* Größe des Spinners */
    color: var(--color-primary);
    margin: 20px 0; /* Abstand zum umgebenden Inhalt */
}





/* Zeile für die Icons und den Kommentarzähler */
.icon-row {
    display: flex;
    align-items: center; /* Zentriert Icons vertikal */
    gap: 10px; /* Abstand zwischen den Icons */
}

/* Stil für einzelne Icons */
.icon-wrapper {
    cursor: pointer;
    position: relative;
}

/* Tooltip für Icons */
.icon-wrapper:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
}


/* Container für den Reaktionspicker */
.reaction-picker {
    /*display: flex; */
    position: absolute;
    gap: 10px;
    margin-top: -90px;
    margin-left: -20px;
    background-color: #3e3d3d;
    padding: 5px;
    border-radius: 5px;
}

.reaction-picker-content {
    display: flex;
    gap: 10px; /* Abstand zwischen den Reaktionen */
}

.reaction-item {
    font-size: 24px;
    cursor: pointer;
    color: orange;
    padding: 5px;
}

.reaction-item:hover {
    color: #ff0000; /* Farbe beim Hover */
}

.active-reaction {
    color: #fd5504; /* Beispiel: Rote Farbe */
}

.reaction-icon, .comment-icon {
    font-size: 20px;
    gap: 10px;
}



.reaction-display {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap; /* Ermöglicht, dass Reaktionen umbrechen */
    gap: 10px; /* Abstand zwischen den Reaktionen */
    font-size: 14px;
}



.settings-icon {
    margin-left: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-icon i {
    font-size: 20px;
    color: #ffffff;
    transition: color 0.2s;
}

.settings-icon i:hover {
    color: #4c6ef5; /* Helle Farbe beim Hover */
}


.icon-container {
    display: inline-flex; /* Ermöglicht Flexbox-Layout */
    align-items: center; /* Zentriert den Inhalt vertikal */
    justify-content: center; /* Zentriert den Inhalt horizontal */
}

/* Container für das Bild mit Navigation */
        .gk-item-feed-image-container {
            position: relative;
            display: flex;
            max-height: 400px;
            justify-content: center;
            align-items: center;
            /*border: 2px solid #ddd; */
            border-radius: 8px;
            overflow: hidden;
        }

        /* Bild im Container */
        .gk-item-feed-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }

        /* Pfeile für das Container-Bild */
        .gk-item-feed-container-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: white;
            cursor: pointer;
            user-select: none;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .gk-item-feed-container-nav-btn:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .gk-item-feed-container-prev {
            left: 10px;
        }

        .gk-item-feed-container-next {
            right: 10px;
        }

        /* Modal für größere Bilder */
        .gk-item-feed-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .gk-item-feed-modal img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 5px;
        }

        /* Schließen Button */
        .gk-item-feed-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            color: #fff;
            cursor: pointer;
        }

        /* Pfeile für die Modal-Navigation */
        .gk-item-feed-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: white;
            cursor: pointer;
            user-select: none;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .gk-item-feed-nav-btn:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .gk-item-feed-prev {
            left: 10px;
        }

        .gk-item-feed-next {
            right: 10px;
        }

        .gk-alert-body {
    position: fixed; /* Fixiert die Alert-Box */
    top: 50px;       /* Abstand vom oberen Rand */
    left: 50%;       /* Zentriert horizontal */
    transform: translateX(-50%);
    z-index: 1050;   /* Stellt sicher, dass sie im Vordergrund ist */
    width: 90%;  /* Begrenzte Breite für mobile Geräte */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Leichter Schatten */
    font-weight: bold; /* Optional: Text fett hervorheben */
}


.gk-item-feed-modal2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gk-item-feed-modal2 .albums-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gk-item-feed-modal2 #albums-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gk-item-feed-modal2 .album {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gk-item-feed-modal2 .album img {
    border-radius: 10px;
    width: 75px;
    height: 75px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent; /* Standard-Rahmen */
}

.gk-item-feed-modal2 .album img.selected {
    border-color: #fd5504; /* Orangener Rahmen für ausgewählte Alben */
}

.gk-item-feed-modal2 #selected-items {
    margin-top: 20px;
    font-size: 16px;
}

.gk-item-feed-modal2 #more-albums-icon {
    display: none;
    align-items: center;
    justify-content: center;
}

.gk-item-feed-modal2 #more-albums-icon i {
    font-size: 24px;
    cursor: pointer;
    color: #fd5504; /* Farbe des Icons */
}

/* Stil für das zweite Modal */
#more-albums-modal .modal-dialog {
    max-width: 600px; /* Kleiner als das erste Modal */
}

#more-albums-modal #more-albums-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#more-albums-modal .album img {
    border-radius: 10px; /* Abgerundete Ecken für die Grafiken im zweiten Modal */
    width: 75px;
    height: 75px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent; /* Standard-Rahmen */
}

#more-albums-modal .album img.selected {
    border-color: #fd5504; /* Orangener Rahmen für ausgewählte Alben */
}

/* Unscharfes erstes Modal, wenn das zweite Modal geöffnet ist */
body.modal-open #NewFeedStatus {
    filter: none; /* Standardzustand: Erstes Modal ist nicht unscharf */
}

body.modal-open #more-albums-modal.show ~ #NewFeedStatus {
    filter: blur(5px); /* Erstes Modal unscharf, wenn das zweite Modal geöffnet ist */
    transition: filter 0.3s ease; /* Sanfter Übergang */
}


.gk-item-feed-ds-container {
    display: flex;
    align-items: center; /* Vertikale Zentrierung */
    background-color: #2b2c3e;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    font-family: Arial, sans-serif;
}

.gk-item-feed-ds-icon {
    width: 40px;
    height: 40px;
    background-color: #1e1f2f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 20px;
    flex-shrink: 0; /* Verhindert, dass das Icon schrumpft */
}

.gk-item-feed-ds-images {
    display: flex;
    gap: 5px;
    margin-right: 10px;
}

.gk-item-feed-ds-images img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
}

.gk-item-feed-ds-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    flex-grow: 1; /* Nimmt den verfügbaren Platz ein */
}

.gk-item-feed-ds-text span {
    font-weight: bold;
    font-size: 14px;
}

.gk-item-feed-ds-text small {
    font-size: 12px;
}




/* Bearbeitungsfunktion Feed Eintrag */

.gk-item-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Sorgt dafür, dass der Dropdown-Bereich rechts bleibt */
}

.gk-item-feed-dropdown-btn {
    border: none;
    background: none;
    font-size: 20px;
    color: #555;
    cursor: pointer;
    padding: 0;
}

.gk-item-feed-dropdown .dropdown-menu {

    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8); /* Transparenter grauer Hintergrund */
    backdrop-filter: blur(5px); /* Verschwommenheit hinzufügen */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Leichte Umrandung */
}

.gk-item-feed-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    background-color: transparent; /* Hintergrund durchsichtig lassen */
}

.gk-item-feed-dropdown .dropdown-item:hover {
    background-color: rgba(150, 150, 150, 0.5); /* Dunklerer Grau-Ton */
    color: #000; /* Textfarbe bleibt dunkler */
}


/* Kommentarbereich */
.gk-feed-comment-item {
    margin-bottom: 5px;
    padding-top: 5px;
    /* border: 1px solid #4b4b4b;
    border-radius: 5px; */
    /* background-color: #4b4b4b; */
    font-size: 14px;
    color: #bbbbbb;
}

.gk-feed-comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.gk-feed-comment-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover; /* Stellt sicher, dass das Bild korrekt skaliert wird */
}

.gk-feed-comment-username {
    font-weight: bold;
    margin-right: 10px;
}

.gk-feed-comment-date {
    font-size: 0.9em;
}

.gk-feed-comment-delete {
    margin-left: auto;
    cursor: pointer;
}

.gk-feed-comment-delete:hover {
    color: #ff0000; /* Rot beim Hovern */
}

.gk-feed-comment-text {
    margin-left: 40px;
    padding: 5px;
    background-color: #2c2c2c;
    color: #bbbbbb;
    border-radius: 5px;
}

/* Kommentar-Eingabefeld und Button */
.gk-feed-comment-area {
    margin-top: 10px;
}

.gk-feed-comment-input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;

    margin-bottom: 10px;
}

.gk-feed-comment-btn {
    background-color: #2765c5;
    color: #fff;
    border: none;
    padding: 5px 5px;
    border-radius: 5px;
    cursor: pointer;
}

.gk-feed-comment-btn:hover {
    background-color: #0056b3;
}

/* Kommentar-Count-Link */
.gk-feed-comment-count {
    color: #2765c5;
    cursor: pointer;
}

.gk-feed-comment-count:hover {
    color: #0056b3;
}

/* Kommentarliste */
.gk-feed-comment-list {
    margin-top: 10px;
    display: none; /* Standardmäßig ausgeblendet */
    max-height: 350px; /* Maximale Höhe */
    overflow-y: auto; /* Scrollbar, wenn der Inhalt die maximale Höhe überschreitet */
    padding-right: 5px; /* Optional: Platz für die Scrollbar */
}