/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body, #__next {
  width: 100vw;
  height: 100%;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

body {
  color: #fff;
  background: #000;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.app-wrapper {
  flex-direction: column;
  width: 100vw;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.warning-banner {
  text-align: center;
  background: #000;
  border-bottom: 1px solid #333;
  flex-shrink: 0;
  padding: 8px 20px;
  font-size: 11px;
}

.recording-indicator {
  color: red;
  margin-right: 5px;
}

.recording-indicator:before {
  content: "●";
  margin-right: 5px;
}

.container {
  flex: 1;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.video-section {
  background: #1a1a1a;
  flex-direction: column;
  flex: 1;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.main-video {
  background: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

#main-canvas {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.participant-label {
  background: #000c;
  border-radius: 4px;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  display: flex;
  position: absolute;
  bottom: 100px;
  left: 20px;
}

.mic-icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
}

.pip-video {
  background: #1a1a1a;
  border: 3px solid #0ea5e9;
  border-radius: 8px;
  width: 220px;
  height: 165px;
  position: absolute;
  bottom: 100px;
  right: 20px;
  overflow: hidden;
}

#pip-canvas {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.pip-label {
  background: #000000d9;
  border-radius: 3px;
  align-items: center;
  padding: 3px 6px;
  font-size: 12px;
  display: flex;
  position: absolute;
  bottom: 4px;
  left: 4px;
}

.transcript-sidebar {
  color: #000;
  background: #fff;
  border-left: 1px solid #ddd;
  flex-direction: column;
  flex-shrink: 0;
  width: 400px;
  display: flex;
}

.transcript-sidebar.hidden {
  width: 0;
  display: none;
}

.transcript-header {
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.transcript-header h2 {
  font-weight: 600;
}

.transcript-greeting {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.close-btn {
  cursor: pointer;
  color: #999;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 24px;
  line-height: 20px;
}

.close-btn:hover {
  color: #000;
}

.transcript-content {
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 10px 10px 80px;
  display: flex;
  overflow: hidden auto;
}

.controls-bar {
  background: #000;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 30px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.controls-left {
  align-items: center;
  gap: 12px;
  display: flex;
}

.control-btn {
  color: #fff;
  cursor: pointer;
  background: #4a4a4a;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 18px;
  display: flex;
}

.control-btn:hover {
  background: #5a5a5a;
}

.controls-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.chat-btn {
  background: #0ea5e9;
  flex-shrink: 0;
  width: 55px;
  height: 55px;
}

.chat-btn:hover {
  background: #0284c7;
}

.controls-right {
  align-items: center;
  gap: 12px;
  display: flex;
}

.end-btn {
  color: #fff;
  cursor: pointer;
  background: #ef4444;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
}

.end-btn:hover {
  background: #dc2626;
}

.report-btn {
  background: #6b7280;
}

.report-btn:hover {
  background: #7a8290;
}

.logo {
  letter-spacing: 3px;
  z-index: 10;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  top: 20px;
  left: 20px;
}

.hidden-media {
  z-index: -1;
  width: 0;
  height: 0;
  position: fixed;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .transcript-sidebar {
    width: 350px;
  }

  .pip-video {
    width: 180px;
    height: 135px;
  }
}

@media (max-width: 900px) {
  .pip-video {
    width: 150px;
    height: 112px;
    bottom: 90px;
    right: 15px;
  }

  .controls-bar {
    height: 70px;
    padding: 0 20px;
  }

  .control-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .chat-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .transcript-sidebar.active {
    z-index: 1000;
    width: 100%;
    transition: transform .3s;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    box-shadow: -5px 0 15px #0000004d;
  }

  .warning-banner {
    padding: 6px 10px;
    font-size: 10px;
  }

  .control-btn {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .chat-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .end-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .controls-bar {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .pip-video {
    width: 120px;
    height: 90px;
    bottom: 80px;
    right: 10px;
  }

  .controls-left, .controls-right {
    gap: 8px;
  }

  .control-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .chat-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .end-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .logo {
    letter-spacing: 2px;
    font-size: 14px;
  }

  .participant-label {
    padding: 4px 8px;
    font-size: 12px;
  }
}

permission {
  z-index: 9999;
  color: #fff;
  cursor: pointer;
  background-color: #1597f4;
  border: none;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 230px;
  height: 32px;
  padding: 4px 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  display: inline-block;
}

.chat-item {
  display: flex;
}

.chat-item--assistant {
  justify-content: flex-start;
}

.chat-message {
  color: #222;
  background-color: #f1f3f5;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 1px 2px #0000000d;
}

.chat-item--assistant .chat-message {
  border-top-left-radius: 4px;
}

.toast-container {
  max-width: 400px;
}

.toast-container .check, .toast-container .close-toast, .toast-container .progress {
  display: none !important;
}

.toast-container .toast-nextjs {
  padding: 8px !important;
}

.toast-container .message {
  margin: 0 !important;
}

.toast-container .message .text {
  text-align: left;
  font-size: 14px;
  line-height: 20px;
}

span.loader {
  box-sizing: border-box;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: 1s linear infinite rotation;
  display: inline-block;
  position: relative;
}

span.loader:after {
  content: "";
  box-sizing: border-box;
  border: 3px solid #ff3d00;
  border-color: #ff3d00 #0000;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

span.loader {
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.mic-container, .mic-container > div {
  display: flex;
}

.mic-container > div.second-icon {
  color: #00ff40;
  max-height: attr(data-height);
  position: absolute;
  overflow: hidden;
}

.expired-interview-page {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.error-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 520px;
  max-width: 100%;
  display: flex;
}

.error-title {
  color: var(--text-neutral-50);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.error-description {
  color: var(--text-neutral-30);
  text-align: center;
  font-size: var(--size-large);
  font-weight: 400;
  line-height: var(--lineheight-lg);
}

@media (max-width: 768px) {
  .error-container {
    width: 335px;
  }

  .error-title {
    font-size: 22px;
  }
}

.buttons-container {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  display: flex;
}

.btn {
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.btn-primary {
  color: #fff;
  background-color: #1597f4;
  border: 1px solid #1597f4;
  border-radius: 999px;
  height: 44px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.btn-primary:hover {
  background-color: #0d6bb3;
  border-color: #0d6bb3;
}

.btn-link {
  height: auto;
  color: var(--text-primary-30);
  font-size: var(--size-medium);
  font-weight: 500;
  line-height: var(--lineheight-base);
  background: none;
  padding: 8px 16px;
  text-decoration: underline;
}

.btn-link:hover {
  color: #0d6bb3;
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/