/* [project]/src/components/CodingRoom/VoiceAgentPanel/VoiceAgentPanel.css [app-client] (css) */
.voice-agent-avatar {
  z-index: 1000;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.voice-agent-circle {
  cursor: pointer;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 3px solid #fff3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  transition: all .3s;
  display: flex;
  position: relative;
  box-shadow: 0 4px 20px #00000026;
}

.voice-agent-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px #0003;
}

.voice-agent-circle.disconnected {
  opacity: .7;
  background: linear-gradient(135deg, #666 0%, #999 100%);
}

.avatar-emoji {
  -webkit-user-select: none;
  user-select: none;
  font-size: 24px;
}

.status-indicator {
  border: 2px solid #fff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 2px;
  right: 2px;
}

.status-indicator.connected {
  background: #52c41a;
  animation: 2s infinite pulse;
}

.status-indicator.disconnected {
  background: #ff4d4f;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 #52c41ab3;
  }

  70% {
    box-shadow: 0 0 0 6px #52c41a00;
  }

  100% {
    box-shadow: 0 0 #52c41a00;
  }
}

.speaking-indicator {
  background: #ffffffe6;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 12px;
  padding: 2px;
  display: flex;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.voice-agent-controls {
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  display: flex;
}

.control-item {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #333;
  background: #ffffffe6;
  border-radius: 12px;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  font-size: 11px;
  display: flex;
}

.control-label {
  color: #666;
  white-space: nowrap;
  font-size: 11px;
}

.control-item.debug-stage {
  background: #667eea1a;
  border: 1px solid #667eea4d;
}

.debug-label {
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 10px;
  font-weight: 600;
}

.debug-value {
  color: #667eea;
  font-family: monospace;
  font-size: 11px;
  font-weight: 500;
}

.mic-toggle-btn {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffffe6 !important;
  border-radius: 50% !important;
  justify-content: center !important;
  align-items: center !important;
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  display: flex !important;
}

.mic-toggle-btn:hover {
  background: #fff !important;
}

.transcript-panel {
  z-index: 999;
  background: #fff;
  flex-direction: column;
  width: 400px;
  height: 100vh;
  animation: .3s slideInRight;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  box-shadow: -4px 0 20px #00000026;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.transcript-header {
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  display: flex;
}

.transcript-title {
  color: #333;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  display: flex;
}

.transcript-content {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .voice-agent-avatar {
    bottom: 80px;
    right: 16px;
  }

  .voice-agent-circle {
    width: 56px;
    height: 56px;
  }

  .avatar-emoji {
    font-size: 20px;
  }

  .transcript-panel {
    width: 100vw;
    max-width: 100%;
  }

  .control-item {
    padding: 3px 6px;
    font-size: 10px;
  }

  .mic-toggle-btn {
    width: 24px !important;
    height: 24px !important;
  }
}

/* [project]/src/components/ui/ActionButton/index.css [app-client] (css) */
.action-button {
  text-align: center;
  cursor: pointer;
  background: #fff;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: Roboto, sans-serif;
  transition: all .3s;
  display: flex;
  border-radius: 32px !important;
  height: auto !important;
  padding: 5px 16px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
}

.action-button-danger {
  color: #ff4d4f !important;
  border: 1px solid #ff4d4f !important;
}

.action-button-danger:disabled {
  color: #d9d9d9 !important;
  border: 0 !important;
}

.action-button-danger:hover {
  background: #fff1f0 !important;
}

.action-button-default {
  color: #000000d9 !important;
  border: 1px solid #d9d9d9 !important;
}

.action-button-default:hover {
  background: #fafafa !important;
}

/* [project]/src/components/ui/PrimaryButton/index.css [app-client] (css) */


/* [project]/src/components/ui/SecondaryButton/index.css [app-client] (css) */
.secondary-button {
  color: #000000d9;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 30px;
  height: auto;
  padding: 8px 15px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  box-shadow: 0 2px #00000005;
}

.secondary-button:hover, .secondary-button:focus {
  color: #722ed1 !important;
  background-color: #fff !important;
  border-color: #722ed1 !important;
}

.secondary-button:active {
  color: #531dab !important;
  background-color: #f5f5f5 !important;
  border-color: #531dab !important;
}

/* [project]/src/components/ui/Footer/index.css [app-client] (css) */
.footer {
  text-align: center;
  border-top: 1px solid #f0f0f0;
  padding: 16px;
}

.footer .text {
  color: #8c8c8c;
  font-size: 14px;
}

/* [project]/src/components/ui/GuidelineListItem/index.css [app-client] (css) */
.guideline-list-item {
  border: none;
  width: 100%;
  padding: 4px 0;
}

.guideline-list-item .ant-list-item-meta {
  align-items: center;
}

.guideline-list-item .ant-list-item-meta-avatar {
  margin-right: 16px;
}

.guideline-list-item .ant-list-item-meta-content {
  align-items: center;
  display: flex;
}

.guideline-list-item-text {
  color: #262626 !important;
  margin: 0 !important;
}

.guideline-list-item-avatar, .guideline-list-item-avatar .ant-avatar {
  box-shadow: none !important;
  background-color: #f9f0ff !important;
  border: none !important;
}

.guideline-list-item-avatar img {
  object-fit: contain !important;
  width: 28px !important;
  height: 28px !important;
}

.guideline-list-item-icon {
  color: #722ed1;
}

.ant-list-item-meta {
  align-items: center !important;
  display: flex !important;
}

/* [project]/src/components/ui/Text/index.css [app-client] (css) */
.text {
  font-family: Roboto, sans-serif;
}

.text-small {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.text-medium {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.text-large {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* [project]/src/components/ui/DecorativeBackground/index.css [app-client] (css) */
.decorative-background {
  background: #fff;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.decorative-background-pattern {
  z-index: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.decorative-background-pattern svg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

.decorative-background-content {
  z-index: 1;
  position: relative;
}

/* [project]/src/components/ui/Logo/index.css [app-client] (css) */
.logo-container {
  margin: 0 auto 16px;
  display: block;
}

.logo-container img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* [project]/src/components/ui/Heading/index.css [app-client] (css) */
.heading {
  font-family: Roboto, sans-serif;
  color: #391085 !important;
  margin: 0 0 16px !important;
}

.heading-large {
  font-size: 24px !important;
  font-weight: 500 !important;
  line-height: 40px !important;
}

.heading-medium {
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 32px !important;
}

.heading-small {
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 28px !important;
}

/* [project]/src/components/ui/VideoPreview/index.css [app-client] (css) */
.video-preview {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
}

/* [project]/src/components/ui/ErrorCard/index.css [app-client] (css) */
.error-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
}

.error-card-title {
  margin-bottom: 16px;
}

.error-card-message {
  color: #000000a6;
  margin-bottom: 8px;
  display: block;
}

.error-card-support {
  margin-top: 16px;
  display: block;
}

.error-card-support a {
  color: #1890ff;
  text-decoration: none;
}

.error-card-support a:hover {
  text-decoration: underline;
}

/* [project]/src/components/ui/SuccessIcon/index.css [app-client] (css) */
.success-icon-component {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
}

.success-icon-component svg {
  display: block;
}

/* [project]/src/components/ui/InfoCard/index.css [app-client] (css) */
.info-card {
  border: 1px solid #d9d9d9 !important;
  border-radius: 16px !important;
  width: 600px !important;
  max-width: 100% !important;
}

.info-card-content {
  flex-direction: column;
  display: flex;
  gap: 8px !important;
  padding: 24px !important;
}

.info-card-title {
  color: #391085;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.info-card-description {
  color: #1f1f1f;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* [project]/src/components/ui/InstructionCard/index.css [app-client] (css) */
.instruction-card {
  background: #22075e;
  border: none;
  border-radius: 16px;
  flex: 1;
  overflow: hidden;
}

.instruction-card .ant-card-body {
  background: #22075e;
  padding: 12px;
}

.instruction-card-cover {
  background: #22075e;
  height: 26vh;
  position: relative;
  overflow: hidden;
}

.instruction-card-cover img {
  object-fit: cover !important;
  position: absolute !important;
}

.instruction-card-body {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  display: flex;
}

.instruction-card-title {
  color: #fff;
  text-align: center;
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* [project]/src/components/ui/CodingInstructionsCard/index.css [app-client] (css) */
.instructions-card {
  border-radius: 16px;
  width: 100%;
  min-width: 840px;
  max-width: 1080px;
  min-height: 500px;
  display: flex;
  overflow: hidden;
}

.instructions-card-video {
  background-color: #22075e;
  flex-shrink: 0;
  width: 488px;
  display: flex;
}

.instructions-card-video .video-preview {
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.instructions-card-body {
  flex: 1;
  border-top-right-radius: 16px !important;
  border-bottom-right-radius: 16px !important;
}

.instructions-card-body .ant-card-body {
  background-color: #22075e;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  padding: 24px;
  display: flex;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.instructions-card-title {
  text-align: center;
  color: #fff !important;
  margin: 0 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}

.instructions-card-list {
  margin-bottom: 0;
}

.instructions-card-item {
  color: #fff;
  border: none !important;
  padding: 4px 0 !important;
}

.instructions-card-item-text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
}

.instructions-card-alert {
  background-color: #531dab !important;
  border: 1px solid #722ed1 !important;
  border-radius: 8px !important;
}

.instructions-card-alert .ant-alert-message {
  font-size: 16px;
  line-height: 24px;
  color: #efdbff !important;
}

/* [project]/src/components/ui/Timer/index.css [app-client] (css) */
.timer-container {
  background: #0f0f0f;
  border: 1px solid #434343;
  border-radius: 35px;
  justify-content: center;
  align-items: center;
  padding: 5px 17px;
  display: flex;
}

.timer-container.timer-warning {
  background: #ff4d4f1a;
  border-color: #ff4d4f;
}

.timer-text {
  color: #f9f0ff !important;
  margin: 0 !important;
  font-family: Fira Code, monospace !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 32px !important;
}

.timer-container.timer-warning .timer-text {
  color: #ff4d4f !important;
}

/* [project]/src/components/ui/UserInfo/index.css [app-client] (css) */
.user-info-text {
  text-align: justify;
  color: #f9f0ff !important;
  margin: 0 !important;
  font-family: Inter, sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: normal !important;
}

/* [project]/src/components/ui/EndButton/index.css [app-client] (css) */
.action-button-danger.end-button {
  color: #fff !important;
  background: #ff4d4f !important;
  border: none !important;
  border-radius: 32px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  height: auto !important;
  padding: 4px 15px !important;
  font-family: Roboto, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  display: flex !important;
}

.action-button-danger.end-button:hover {
  color: #fff !important;
  background: #ff7875 !important;
  border: none !important;
}

.action-button-danger.end-button:focus {
  color: #fff !important;
  background: #ff4d4f !important;
  border: none !important;
}

.action-button-danger.end-button:disabled {
  color: #ffffffb3 !important;
  background: #ff4d4f80 !important;
  border: none !important;
}

/* [project]/src/components/ui/ConfirmationModal/index.css [app-client] (css) */
.confirmation-modal .ant-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
}

.confirmation-modal .ant-modal-header {
  display: none;
}

.confirmation-modal .ant-modal-body {
  padding: 0;
}

.confirmation-modal .ant-modal-close {
  color: #000000d9;
  width: 16px;
  height: 16px;
  top: 16px;
  right: 24px;
}

.confirmation-modal .ant-modal-close:hover {
  color: #000000d9;
  background: none;
}

.confirmation-modal-content {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.confirmation-modal-header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  display: flex;
  box-shadow: inset 0 -1px #f0f0f0;
}

.confirmation-modal-title {
  white-space: nowrap;
  color: #000000d9 !important;
  margin: 0 !important;
  font-family: Roboto, sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
}

.confirmation-modal-body {
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  display: flex;
}

.confirmation-modal-text-group {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  display: flex;
}

.confirmation-modal-description {
  align-self: flex-start;
  color: #262626 !important;
  text-align: justify !important;
  white-space: pre-wrap !important;
  width: 100% !important;
  margin: 0 !important;
  font-family: Roboto, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
}

.confirmation-modal-additional-info {
  align-self: flex-start;
  color: #000000d9 !important;
  text-align: justify !important;
  width: 100% !important;
  margin: 0 !important;
  font-family: Roboto, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
}

.confirmation-modal-info-box {
  background: #e6f7ff;
  border: 1px solid #91d5ff;
  border-radius: 12px;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 9px 16px;
  display: flex;
}

.confirmation-modal-info-text {
  flex: 1;
  min-width: 0;
  color: #262626 !important;
  white-space: pre-wrap !important;
  margin: 0 !important;
  font-family: Roboto, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
}

.confirmation-modal-footer {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 16px;
  display: flex;
  box-shadow: inset 0 1px #f0f0f0;
}

.confirmation-modal-button-group {
  align-items: center;
  gap: 8px;
  display: flex;
}

.confirmation-modal-cancel-button {
  color: #000000d9 !important;
  background: #fff !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 20px !important;
  height: auto !important;
  padding: 5px 16px !important;
  font-family: Roboto, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  box-shadow: 0 2px #00000004 !important;
}

.confirmation-modal-cancel-button:hover {
  color: #000000d9 !important;
  background: #fff !important;
  border-color: #d9d9d9 !important;
}

.confirmation-modal-confirm-button {
  color: #fff !important;
  background: #531dab !important;
  border: 1px solid #531dab !important;
  border-radius: 20px !important;
  height: auto !important;
  padding: 5px 16px !important;
  font-family: Roboto, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  box-shadow: 0 2px #0000000b !important;
}

.confirmation-modal-confirm-button:hover {
  color: #fff !important;
  background: #531dab !important;
  border-color: #531dab !important;
}

.confirmation-modal-confirm-button:disabled {
  color: #fffc !important;
  background: #531dab99 !important;
  border-color: #531dab99 !important;
}

.confirmation-modal-confirm-button-danger {
  color: #fff !important;
  background: #ff4d4f !important;
  border: 1px solid #ff4d4f !important;
  border-radius: 20px !important;
  height: auto !important;
  padding: 4px 15px !important;
  font-family: Roboto, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  box-shadow: 0 2px #0000000b !important;
}

.confirmation-modal-confirm-button-danger:hover {
  color: #fff !important;
  background: #ff4d4f !important;
  border-color: #ff4d4f !important;
}

.confirmation-modal-confirm-button-danger:disabled {
  color: #fffc !important;
  background: #ff4d4f99 !important;
  border-color: #ff4d4f99 !important;
}

/* [project]/src/components/CodingRoom/ActionBar/index.css [app-client] (css) */
.action-bar {
  background: #333;
  border: 1px solid #434343;
  border-radius: 12px 12px 0 0;
  justify-content: space-between;
  align-items: center;
  height: auto;
  padding: 12px;
  display: flex;
}

.action-bar-language-section {
  align-items: center;
  display: flex;
}

.action-bar-language-select {
  width: auto;
  min-width: 120px;
  background: none !important;
}

.action-bar-language-select .ant-select-selector {
  color: #f9f0ff !important;
  background: none !important;
  border: 1px solid #434343 !important;
  border-radius: 8px !important;
  padding: 5px 16px !important;
}

.action-bar-language-select .ant-select-selection-item {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #f9f0ff !important;
}

.action-bar-language-select .ant-select-arrow {
  color: #f9f0ff !important;
}

.action-bar-buttons {
  align-items: center;
  gap: 4px;
  display: flex;
}

.action-bar-button {
  align-items: center;
  gap: 10px;
  display: flex;
  color: #f9f0ff !important;
  background: none !important;
  border: 1px solid #434343 !important;
  border-radius: 8px !important;
  height: auto !important;
  padding: 5px 16px !important;
  font-family: Roboto, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
}

.action-bar-button:hover {
  background: #f9f0ff1a !important;
  border-color: #434343 !important;
}

.action-bar-button:disabled {
  opacity: .5;
}

.action-bar-button .anticon {
  color: #f9f0ff !important;
}

.action-bar-button-run {
  color: #4076b9 !important;
  background: #22252a !important;
  border: 1px solid #41608c !important;
}

.action-bar-button-run:hover:not(:disabled) {
  color: #4076b9 !important;
  background: #22252a !important;
  border-color: #41608c !important;
}

.action-bar-button-run .anticon {
  color: #4076b9 !important;
}

.action-bar-button-test {
  color: #ad6800 !important;
  background: #312a21 !important;
  border: 1px solid #874d00 !important;
}

.action-bar-button-test:hover:not(:disabled) {
  color: #ad6800 !important;
  background: #312a21 !important;
  border-color: #874d00 !important;
}

.action-bar-button-test .anticon {
  color: #ad6800 !important;
}

.action-bar-button-submit {
  color: #568943 !important;
  background: #242a22 !important;
  border: 1px solid #568943 !important;
}

.action-bar-button-submit:hover:not(:disabled) {
  color: #568943 !important;
  background: #242a22 !important;
  border-color: #568943 !important;
}

.action-bar-button-submit .anticon {
  color: #568943 !important;
}

.ant-select-dropdown {
  background: #333 !important;
  border: 1px solid #434343 !important;
  border-radius: 8px !important;
}

.ant-select-dropdown .ant-select-item {
  color: #f9f0ff !important;
  background: #333 !important;
  padding: 8px 16px !important;
}

.ant-select-dropdown .ant-select-item:hover {
  background: #434343 !important;
}

.ant-select-dropdown .ant-select-item-option-selected {
  color: #f9f0ff !important;
  background: #434343 !important;
}

.action-bar-language-option {
  color: #f9f0ff !important;
  background-color: #333 !important;
}

/* [project]/src/components/ui/MaximizeButton/index.css [app-client] (css) */
.maximizable-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.maximizable-container--maximized {
  z-index: 1000;
  background-color: #2b2b2b;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
}

.maximize-button {
  color: #f9f0ff;
  cursor: pointer;
  align-items: center;
  padding: 0 4px;
  font-size: 16px;
  transition: color .2s;
  display: flex;
}

.maximize-button:hover {
  color: #fff;
}

.maximize-header {
  background-color: #1e1e1e;
  justify-content: flex-end;
  padding: 0;
  display: flex;
}

.maximize-header--inline {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.maximize-content {
  height: calc(100% - 40px);
}

.maximize-content--no-header {
  height: 100%;
}

/* [project]/src/components/CodingRoom/QuestionCard/index.css [app-client] (css) */
.question-card {
  background: #333;
  border: 1px solid #434343;
  border-radius: 12px;
  flex-direction: column;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.question-header {
  background: #333;
  border-bottom: 1px solid #434343;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  display: flex;
}

.question-title {
  color: #f9f0ff;
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.question-select {
  width: 120px;
  background: none !important;
}

.question-select .ant-select-selector {
  color: #f9f0ff !important;
  border: 1px solid #434343 !important;
  border-radius: 8px !important;
}

.question-select .ant-select-selection-item, .question-select .ant-select-arrow {
  color: #f9f0ff !important;
}

.ant-select-dropdown {
  background: #333 !important;
  border: 1px solid #434343 !important;
  border-radius: 8px !important;
}

.ant-select-dropdown .ant-select-item {
  color: #f9f0ff !important;
  background: #333 !important;
  padding: 8px 12px !important;
}

.ant-select-dropdown .ant-select-item:hover, .ant-select-dropdown .ant-select-item-option-selected {
  color: #f9f0ff !important;
  background: #434343 !important;
}

.question-option {
  justify-content: space-between;
  align-items: center;
  display: flex;
  color: #f9f0ff !important;
}

.question-content {
  color: #fafafa;
  background: #262626;
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

.question-content::-webkit-scrollbar {
  width: 4px;
}

.question-content::-webkit-scrollbar-track {
  background: #333;
}

.question-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

.question-problem {
  margin-bottom: 24px;
}

.problem-title {
  margin: 0 0 16px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #fff !important;
}

.question-content .problem-title, .question-problem .problem-title {
  color: #fff !important;
}

.problem-description {
  color: #fafafa;
  font-size: 14px;
  line-height: 20px;
}

.problem-description p {
  color: #fafafa;
  margin: 0 0 12px;
}

.problem-description pre {
  color: #fafafa;
  word-wrap: break-word;
  white-space: pre-wrap;
  background: #1a1a1a;
  border-radius: 4px;
  padding: 12px;
  overflow-x: auto;
}

.problem-description code {
  color: #fafafa;
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2px 4px;
}

.question-image {
  text-align: center;
  margin: 16px 0;
}

.question-image img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

.question-section {
  margin-bottom: 24px;
}

.section-title {
  color: #fff;
  margin: 0 0 12px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.section-content {
  color: #fafafa;
  font-size: 14px;
  line-height: 20px;
}

.section-content p {
  color: #fafafa;
  margin: 0 0 8px;
}

.test-case {
  background: #1a1a1a;
  border: 1px solid #434343;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 16px;
}

.test-case-label {
  color: #f9f0ff;
  margin-bottom: 12px;
  font-weight: 600;
}

.test-case-description {
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  display: flex;
}

.description-label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.description-value {
  color: #d9d9d9;
  background: #2a2a2a;
  border: 1px solid #434343;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.5;
}

.test-case-content {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.test-input, .test-output {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.input-label, .output-label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.input-value, .output-value {
  color: #fafafa;
  background: #333;
  border: 1px solid #434343;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-family: Courier New, monospace;
  font-size: 13px;
  display: inline-flex;
}

.question-description-content pre, .question-constraints-content pre {
  color: #fafafa;
  background: #333;
  border: 1px solid #434343;
  border-radius: 4px;
  margin: 8px 0;
  padding: 12px;
  font-size: 14px;
  overflow-x: auto;
}

.question-description-content ul, .question-description-content ol, .question-constraints-content ul, .question-constraints-content ol, .constraints-list {
  color: inherit;
  margin: 8px 0;
  padding-left: 20px;
}

.question-description-content li, .question-constraints-content li, .constraint-item {
  color: inherit;
  margin: 4px 0;
  line-height: 1.5;
}

.question-description-content br, .question-constraints-content br {
  line-height: 1.5;
}

.question-card-main * {
  color: inherit;
}

.question-card-main .text {
  color: inherit !important;
}

.question-card-main .heading, .question-card-main .ant-typography {
  color: inherit !important;
  margin-bottom: 0 !important;
}

.question-card-main .ant-typography h1, .question-card-main .ant-typography h2, .question-card-main .ant-typography h3, .question-card-main .ant-typography h4, .question-card-main .ant-typography h5, .question-card-main .ant-typography h6 {
  color: #f9f0ff !important;
  margin-bottom: 0 !important;
}

.question-card-main .ant-typography p {
  color: #fafafa !important;
  margin-bottom: 0 !important;
}

.question-card-main .ant-typography .ant-typography, .question-card-main p, .question-card-main div, .question-card-main span, .question-card-main li {
  color: inherit !important;
}

.question-description-content *, .question-constraints-content * {
  color: #fafafa !important;
}

/* [project]/src/components/CodingRoom/CodeEditor/index.css [app-client] (css) */
.code-editor-container {
  height: 100%;
  padding: 12px 0;
}

.code-editor-wrapper {
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
}

.code-editor-disabled-banner {
  color: #e2e8f0;
  text-align: center;
  background-color: #48bb7833;
  border-bottom: 1px solid #48bb78;
  padding: 8px 16px;
  font-size: 14px;
}

/* [project]/src/components/CodingRoom/InputOutputPanel/index.css [app-client] (css) */
.input-output-panel {
  height: 100%;
  padding: 12px 0;
}

.input-output-panel-container {
  background: #1f1f1f;
  border: 1px solid #434343;
  border-radius: 12px;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.input-output-panel-header {
  background: #333;
  border: 1px solid #434343;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

.input-output-panel-content {
  background: #262626;
  flex: 1;
  overflow: hidden;
}

.input-output-tabs {
  height: auto;
}

.input-output-tabs .ant-tabs-nav {
  background: none;
  border-bottom: none;
  margin: 0;
  padding: 0 16px;
}

.input-output-tabs .ant-tabs-nav:before {
  display: none;
}

.input-output-tabs .ant-tabs-nav-list {
  gap: 0 !important;
}

.input-output-tabs .ant-tabs-tab {
  background: none;
  border: none;
  margin: 0;
  padding: 12px 0;
  font-family: Fira Code, monospace;
  font-size: 14px;
  line-height: 22px;
}

.input-output-tabs .ant-tabs-tab-btn {
  color: #8c8c8c;
  font-family: Fira Code, monospace;
  font-weight: 400;
}

.input-output-tabs .ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #fff;
  font-family: Fira Code, monospace;
  font-weight: bold;
}

.input-output-tabs .ant-tabs-ink-bar {
  background: #fff;
  height: 2px;
}

.input-output-tabs .ant-tabs-content-holder {
  display: none;
}

.tab-label {
  white-space: nowrap;
  align-items: center;
  font-family: Fira Code, monospace;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.tab-label-active {
  color: #fff;
  font-family: Fira Code, monospace;
  font-weight: bold;
}

.tab-label-inactive {
  color: #8c8c8c;
  font-family: Fira Code, monospace;
  font-weight: 400;
}

.input-tab-content {
  background: #262626;
  height: 100%;
  overflow: hidden;
}

.output-content {
  color: #e2e8f0;
  white-space: pre-wrap;
  background-color: #262626;
  height: 100%;
  padding: 16px;
  font-family: Fira Code, monospace;
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden auto;
}

.test-cases-content {
  color: #e2e8f0;
  background-color: #262626;
  flex-direction: column;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.output-icon {
  margin-left: 6px;
}

.success-icon {
  color: #48bb78;
  width: 15px;
  height: 15px;
}

.error-icon, .output-content-error {
  color: #f56565;
}

.output-placeholder {
  color: #718096;
  font-style: italic;
}

.test-cases-badge {
  color: #fff;
  background: #434343;
  border-radius: 4px;
  margin-left: 8px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
}

/*# sourceMappingURL=src_components_8ce4a4ed._.css.map*/