#module {
  font-size: 1rem;
  line-height: 1.5;
}

#module #collapseExample.collapse:not(.show) {
  display: block;
  height: 3rem;
  overflow: hidden;
}

#module #collapseExample.collapsing {
  height: 3rem;
}

#module a.collapsed::after {
  content: "+ Zeige mehr";
  color: black;
}

#module a:not(.collapsed)::after {
  content: "- Zeige weniger";
  color: black;
}
* {
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1300px;
  position: relative;
  margin: auto;
  padding: 20px;
}

/* Make the images invisible by default */
.Containers {
  display: none;
}

/* forward & Back buttons */
.Back,
.forward {
  cursor: pointer;
  position: absolute;
  top: 48%;
  width: auto;
  margin-top: -23px;
  padding: 17px;
  color: grey;
  font-weight: bold;
  font-size: 19px;
  transition: 0.4s ease;
  border-radius: 0 5px 5px 0;
  user-select: none;
}

/* Place the "forward button" to the right */
.forward {
  right: 0;
  border-radius: 4px 0 0 4px;
}

/*when the user hovers,add a black background with some little opacity */
.Back:hover,
.forward:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption Info */
.info {
  color: #000;
  font-size: 16px;
  padding: 10px 14px;
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

/* Content */
.info {
  color: #000;
  font-size: 14px;
  padding: 10px 14px;
  position: absolute;
  top: 0;
}

/* The circles or bullets indicators */
.dots {
  cursor: pointer;
  height: 16px;
  width: 16px;
  margin: 0 3px;
  background: linear-gradient(92.18deg, #0f6a5f -25.78%, #0f6a5f 123.02%);
  opacity: 0.3;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}

.enable,
.dots:hover {
  background: linear-gradient(92.18deg, #0f6a5f -25.78%, #0f6a5f 123.02%);
  opacity: 1;
}

/* Faint animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.4s;
  animation-name: fade;
  animation-duration: 1.4s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 2;
  }
}

@keyframes fade {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 2;
  }
}
.floating-selector {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
}

.selector-header {
  padding: 10px 15px;
  background-color: #f5f5f5;
}

.selector-options {
  display: none;
  flex-direction: column;
  background-color: white;
}

.selector-options div {
  padding: 10px 15px;
}

.selector-options div:hover {
  background-color: #eee;
}

.floating-selector:hover .selector-options,
.floating-selector.open .selector-options {
  display: flex;
}
@media (max-width: 767px) {
  .no-mobile {
    display: none !important;
  }
}

#hero-10.dashboard-builder-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 40px;
}

#hero-10.dashboard-builder-section .container {
  width: 100%;
}

.dashboard-builder-col {
  margin-top: 30px;
}

.dashboard-builder {
  width: min(100%, 880px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-canvas {
  display: grid;
  grid-template-columns: minmax(115px, 170px) minmax(0, 1fr);
  height: 520px;
  border: 1px solid #d6dde7;
  border-radius: 18px;
  overflow: hidden;
  background: #e9eef4;
  box-shadow: 0 24px 46px rgba(17, 21, 34, 0.16);
}

.dashboard-canvas-sidebar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: 1px solid #d2dae5;
}

.dashboard-canvas-workspace {
  position: relative;
  overflow: hidden;
  background-color: #e9edf3;
  background-image:
    linear-gradient(rgba(115, 132, 153, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 132, 153, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
}

.dashboard-canvas-workspace.is-dragover {
  background-color: #dfe6ef;
}

.dashboard-workspace-hint {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 9px 14px;
  border-radius: 999px;
  color: #4b5d75;
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed #b8c5d6;
  font-weight: 600;
  font-size: 0.9rem;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.dashboard-canvas-workspace.has-widget .dashboard-workspace-hint {
  opacity: 0;
}

.dashboard-widget-palette {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-widget-tile {
  border: 1px solid #d4dce8;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  cursor: grab;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dashboard-widget-tile:hover {
  transform: translateY(-3px);
  border-color: #9db2cb;
  box-shadow: 0 8px 20px rgba(26, 43, 66, 0.14);
}

.dashboard-widget-tile.is-dragging {
  opacity: 0.55;
}

.dashboard-widget-tile img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  pointer-events: none;
}

.dashboard-widget-tile span {
  font-size: 0.72rem;
  color: #536983;
  font-weight: 600;
  text-transform: lowercase;
}

.dashboard-widget-instance {
  position: absolute;
  left: 14px;
  top: 14px;
  border: 1px solid #d5deea;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
  box-shadow: 0 12px 26px rgba(18, 33, 53, 0.18);
  cursor: grab;
  touch-action: none;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 140ms ease, transform 140ms ease, box-shadow 160ms ease;
}

.dashboard-widget-instance.is-visible {
  opacity: 1;
  transform: scale(1);
}

.dashboard-widget-instance.is-dragging {
  cursor: grabbing;
  box-shadow: 0 18px 32px rgba(18, 33, 53, 0.24);
}

.dashboard-widget-instance img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

@media (max-width: 1199px) {
  #hero-10.dashboard-builder-section {
    padding-top: 110px;
    padding-bottom: 30px;
  }

  .dashboard-builder {
    width: min(100%, 760px);
  }

  .dashboard-canvas {
    height: 490px;
  }
}

@media (max-width: 991px) {
  .dashboard-builder-col {
    margin-top: 24px;
  }

  .dashboard-builder {
    width: min(100%, 680px);
  }

  .dashboard-canvas {
    height: 460px;
    grid-template-columns: minmax(95px, 140px) minmax(0, 1fr);
  }

  .dashboard-widget-palette {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  #hero-10.dashboard-builder-section {
    min-height: 100svh;
    padding-top: 100px;
    padding-bottom: 24px;
  }

  .dashboard-builder-col {
    margin-top: 18px;
  }

  .dashboard-canvas {
    height: 380px;
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .dashboard-widget-palette {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-widget-tile,
  .dashboard-widget-instance,
  .dashboard-workspace-hint {
    transition: none;
  }
}

.ai-dispatch-demo {
  margin-top: 22px;
  background: #fff;
  border: 1px solid #d7e0ec;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(18, 33, 53, 0.12);
}

.ai-dispatch-result {
  background: #f4f7fb;
  border: 1px dashed #bcc9dc;
  border-radius: 10px;
  padding: 12px 14px;
  color: #3f4f67;
}

.ai-dispatch-result.is-visible {
  background: #edf8f2;
  border-style: solid;
  border-color: #9dcfb2;
  color: #274539;
}

.ai-dispatch-result-title {
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .ai-dispatch-demo {
    padding: 16px;
  }
}
