/* [project]/app/[locale]/mitarbeiter/mitarbeiter.module.css [app-client] (css) */
.mitarbeiter-module__WCr6nq__shell {
  background: radial-gradient(circle at top left, rgb(var(--glow-1) / .25), transparent 55%), radial-gradient(circle at bottom right, rgb(var(--glow-2) / .25), transparent 55%), radial-gradient(circle at 50% 50%, #0f172afa, #0f172a);
  min-height: 100vh;
  padding: 24px;
}

.mitarbeiter-module__WCr6nq__layout {
  align-items: flex-start;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}

.mitarbeiter-module__WCr6nq__sidebar {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #0f172ae6;
  border: 1px solid #94a3b833;
  border-radius: 20px;
  flex-shrink: 0;
  width: 280px;
  padding: 24px;
  position: sticky;
  top: 24px;
}

.mitarbeiter-module__WCr6nq__backLink {
  color: #94a3b8e6;
  background: #1e293b80;
  border: 1px solid #94a3b833;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 12px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.mitarbeiter-module__WCr6nq__backLink:hover {
  color: #e5e7eb;
  background: #1e293bcc;
  border-color: #38bdf866;
}

.mitarbeiter-module__WCr6nq__backLink svg {
  width: 16px;
  height: 16px;
}

.mitarbeiter-module__WCr6nq__title {
  letter-spacing: -.03em;
  color: #e5e7eb;
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.mitarbeiter-module__WCr6nq__subtitle {
  color: #94a3b8e6;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
}

.mitarbeiter-module__WCr6nq__sidebarHint {
  color: #38bdf8e6;
  background: #38bdf81a;
  border: 1px solid #38bdf833;
  border-radius: 12px;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  font-size: 12px;
  display: flex;
}

.mitarbeiter-module__WCr6nq__sidebarHint svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.mitarbeiter-module__WCr6nq__grid {
  flex: 1;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  min-width: 0;
  display: grid;
}

.mitarbeiter-module__WCr6nq__card {
  cursor: pointer;
  text-align: left;
  background: #0f172acc;
  border: 1px solid #94a3b833;
  border-radius: 20px;
  padding: 0;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.mitarbeiter-module__WCr6nq__card:before {
  content: "";
  background: linear-gradient(135deg, rgb(var(--glow-1) / .1), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.mitarbeiter-module__WCr6nq__card:hover {
  border-color: var(--accent, #38bdf880);
  box-shadow: 0 20px 40px #0006, 0 0 0 1px var(--accent, #38bdf833), 0 0 60px -20px var(--accent, #38bdf866);
  transform: translateY(-4px);
}

.mitarbeiter-module__WCr6nq__card:hover:before {
  opacity: 1;
}

.mitarbeiter-module__WCr6nq__cardActive {
  border-color: var(--accent, #38bdf8cc) !important;
  box-shadow: 0 20px 40px #0006, 0 0 0 2px var(--accent, #38bdf866), 0 0 80px -20px var(--accent, #38bdf899) !important;
}

.mitarbeiter-module__WCr6nq__imageWrapper {
  aspect-ratio: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.mitarbeiter-module__WCr6nq__image {
  object-fit: cover;
  object-position: top center;
  width: 100%;
  height: 100%;
  transition: transform .4s;
}

.mitarbeiter-module__WCr6nq__card:hover .mitarbeiter-module__WCr6nq__image {
  transform: scale(1.05);
}

.mitarbeiter-module__WCr6nq__playingIndicator {
  border: 1px solid var(--accent, #38bdf880);
  background: #0f172ae6;
  border-radius: 999px;
  gap: 4px;
  padding: 8px 16px;
  display: flex;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.mitarbeiter-module__WCr6nq__playingIndicator span {
  background: var(--accent, #38bdf8);
  border-radius: 2px;
  width: 4px;
  height: 16px;
  animation: .8s ease-in-out infinite mitarbeiter-module__WCr6nq__wave;
}

.mitarbeiter-module__WCr6nq__playingIndicator span:nth-child(2) {
  animation-delay: .1s;
}

.mitarbeiter-module__WCr6nq__playingIndicator span:nth-child(3) {
  animation-delay: .2s;
}

@keyframes mitarbeiter-module__WCr6nq__wave {
  0%, 100% {
    transform: scaleY(.5);
  }

  50% {
    transform: scaleY(1);
  }
}

.mitarbeiter-module__WCr6nq__info {
  background: linear-gradient(to top, #0f172afa, #0f172ae6);
  padding: 20px;
}

.mitarbeiter-module__WCr6nq__name {
  color: #e5e7eb;
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 600;
}

.mitarbeiter-module__WCr6nq__role {
  color: var(--accent, #94a3b8e6);
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.mitarbeiter-module__WCr6nq__speechBubble {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 100;
  background: #0f172af2;
  border: 1px solid #94a3b84d;
  border-radius: 20px;
  align-items: flex-start;
  gap: 16px;
  width: calc(100% - 32px);
  max-width: 600px;
  padding: 20px;
  animation: .3s mitarbeiter-module__WCr6nq__slideUp;
  display: flex;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 20px 60px #00000080;
}

@keyframes mitarbeiter-module__WCr6nq__slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%)translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }
}

.mitarbeiter-module__WCr6nq__speechAvatar {
  border: 2px solid #38bdf880;
  border-radius: 50%;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  position: relative;
  overflow: visible;
}

.mitarbeiter-module__WCr6nq__speechAvatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mitarbeiter-module__WCr6nq__speechContent {
  color: #e5e7eb;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
}

.mitarbeiter-module__WCr6nq__speechContent strong {
  color: #38bdf8;
  margin-bottom: 4px;
  display: block;
}

.mitarbeiter-module__WCr6nq__speechContent p {
  color: #94a3b8f2;
  margin: 0;
}

.mitarbeiter-module__WCr6nq__turnHistory {
  flex-direction: column;
  gap: 8px;
  max-height: 180px;
  padding-right: 4px;
  display: flex;
  overflow-y: auto;
}

.mitarbeiter-module__WCr6nq__turnHistoryItem {
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
}

.mitarbeiter-module__WCr6nq__turnHistoryItem strong {
  color: #e5e7ebf2;
  margin-bottom: 4px;
  display: block;
}

.mitarbeiter-module__WCr6nq__turnHistoryItem p {
  margin: 0;
}

.mitarbeiter-module__WCr6nq__turnHistoryUser {
  color: #fff;
  background: linear-gradient(135deg, #6366f1e6, #8b5cf6e6);
  align-self: flex-end;
}

.mitarbeiter-module__WCr6nq__turnHistoryAssistant {
  background: #1e293bd1;
  border: 1px solid #38bdf82e;
  align-self: flex-start;
}

.mitarbeiter-module__WCr6nq__stopButton {
  color: #ef4444;
  cursor: pointer;
  background: #ef444433;
  border: 1px solid #ef444480;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
}

.mitarbeiter-module__WCr6nq__stopButton:hover {
  background: #ef44444d;
  border-color: #ef4444cc;
}

.mitarbeiter-module__WCr6nq__stopButton svg {
  width: 16px;
  height: 16px;
}

.mitarbeiter-module__WCr6nq__speechActions {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  display: flex;
}

.mitarbeiter-module__WCr6nq__resetButton {
  color: #e5e7ebf2;
  cursor: pointer;
  letter-spacing: .01em;
  white-space: nowrap;
  background: #1e293bb3;
  border: 1px solid #38bdf859;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  transition: all .2s;
}

.mitarbeiter-module__WCr6nq__resetButton:hover {
  color: #fff;
  background: #1e293be6;
  border-color: #38bdf899;
}

.mitarbeiter-module__WCr6nq__conversationButton {
  color: #38bdf8;
  cursor: pointer;
  background: #38bdf833;
  border: 1px solid #38bdf880;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
}

.mitarbeiter-module__WCr6nq__conversationButton:hover {
  background: #38bdf84d;
  border-color: #38bdf8cc;
  transform: scale(1.05);
}

.mitarbeiter-module__WCr6nq__conversationButton svg {
  width: 18px;
  height: 18px;
}

.mitarbeiter-module__WCr6nq__conversationButtonActive {
  color: #ef4444 !important;
  background: #ef444433 !important;
  border-color: #ef444499 !important;
}

.mitarbeiter-module__WCr6nq__conversationButtonActive:hover {
  background: #ef44444d !important;
  border-color: #ef4444cc !important;
}

.mitarbeiter-module__WCr6nq__ttsButton {
  color: #94a3b8e6;
  cursor: pointer;
  background: #1e293b99;
  border: 1px solid #94a3b866;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
  position: relative;
}

.mitarbeiter-module__WCr6nq__ttsButton:hover {
  background: #1e293bcc;
  border-color: #94a3b899;
}

.mitarbeiter-module__WCr6nq__ttsButton svg {
  width: 18px;
  height: 18px;
}

.mitarbeiter-module__WCr6nq__ttsButtonOff {
  color: #ef4444cc;
  border-color: #ef444466;
}

.mitarbeiter-module__WCr6nq__ttsButtonOff:hover {
  border-color: #ef444499;
}

.mitarbeiter-module__WCr6nq__conversationActive {
  border-color: #38bdf899;
  box-shadow: 0 20px 60px #00000080, 0 0 30px #38bdf833;
}

.mitarbeiter-module__WCr6nq__listeningIndicator {
  background: #38bdf8e6;
  border-radius: 12px;
  gap: 3px;
  padding: 4px 10px;
  display: flex;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.mitarbeiter-module__WCr6nq__listeningIndicator span {
  background: #fff;
  border-radius: 2px;
  width: 4px;
  height: 10px;
  animation: .6s ease-in-out infinite mitarbeiter-module__WCr6nq__listeningWave;
}

.mitarbeiter-module__WCr6nq__listeningIndicator span:nth-child(2) {
  animation-delay: .1s;
}

.mitarbeiter-module__WCr6nq__listeningIndicator span:nth-child(3) {
  animation-delay: .2s;
}

@keyframes mitarbeiter-module__WCr6nq__listeningWave {
  0%, 100% {
    opacity: .7;
    transform: scaleY(.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.mitarbeiter-module__WCr6nq__userTranscript {
  border-bottom: 1px solid #94a3b833;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.mitarbeiter-module__WCr6nq__userTranscript strong {
  color: #a78bfa !important;
}

.mitarbeiter-module__WCr6nq__userTranscript p {
  font-style: italic;
  color: #e5e7ebe6 !important;
}

@media (max-width: 900px) {
  .mitarbeiter-module__WCr6nq__layout {
    flex-direction: column;
  }

  .mitarbeiter-module__WCr6nq__sidebar {
    width: 100%;
    position: static;
  }

  .mitarbeiter-module__WCr6nq__grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 640px) {
  .mitarbeiter-module__WCr6nq__shell, .mitarbeiter-module__WCr6nq__sidebar {
    padding: 16px;
  }

  .mitarbeiter-module__WCr6nq__title {
    font-size: 1.25rem;
  }

  .mitarbeiter-module__WCr6nq__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mitarbeiter-module__WCr6nq__card {
    border-radius: 16px;
  }

  .mitarbeiter-module__WCr6nq__info {
    padding: 12px;
  }

  .mitarbeiter-module__WCr6nq__name {
    font-size: 14px;
  }

  .mitarbeiter-module__WCr6nq__role {
    font-size: 11px;
  }

  .mitarbeiter-module__WCr6nq__speechBubble {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 16px;
  }

  .mitarbeiter-module__WCr6nq__speechActions {
    width: 100%;
  }
}

/*# sourceMappingURL=app_%5Blocale%5D_mitarbeiter_mitarbeiter_module_775d1921.css.map*/