body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* stylelint-disable */
html,
body {
  width: 100%;
  height: 100%;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@-ms-viewport {
  width: device-width;
}
body {
  margin: 0;
}
[tabindex='-1']:focus {
  outline: none;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
abbr[title],
abbr[data-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
}
address {
  margin-bottom: 1em;
  font-style: normal;
  line-height: inherit;
}
input[type='text'],
input[type='password'],
input[type='number'],
textarea {
  -webkit-appearance: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1em;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1em;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
pre,
code,
kbd,
samp {
  font-size: 1em;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
pre {
  margin-top: 0;
  margin-bottom: 1em;
  overflow: auto;
}
figure {
  margin: 0 0 1em;
}
img {
  vertical-align: middle;
  border-style: none;
}
a,
area,
button,
[role='button'],
input:not([type='range']),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75em;
  padding-bottom: 0.3em;
  text-align: left;
  caption-side: bottom;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  line-height: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
mark {
  padding: 0.2em;
  background-color: #feffe6;
}

/* Main page container */
.page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Title */
.page-title {
  margin-bottom: 30px;
  text-align: center;
}

/* App description */
.app-description {
  width: 100%;
  max-width: 800px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(185, 255, 249) 100%);
  padding: 40px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(74, 161, 215, 0.33);
}

/* Inner description text */
.description-content {
  margin-bottom: 32px;
}

/* Auth card inside description */
.auth-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.077);
  max-width: 360px;
  margin: 0 auto;
}

/* Auth card content */
.auth-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-card-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.auth-card-subtitle {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
  text-align: center;
}

.auth-card-buttons {
  width: 100%;
}

/* Google button minimal */
.google-button {
  background-color: #4285f4;
  border: none;
  color: white;
  font-size: 14px;
  height: 40px;
}

.google-button:hover,
.google-button:focus {
  background-color: #3367d6;
}
.slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  color: inherit;
  background-color: inherit;
  transition: right 0.3s ease-in-out;
  z-index: 1001;

  & .content {
    margin: 12px;
  }
}

.slide-menu.open {
  right: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1000;
}

.overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 12px;
}

.close-button {
  cursor: pointer;
}

.menu-item {
    display: flex;
    padding: 4px;
    align-items: center;
    border: none;
}

.menu-icon {
    font-size: 16px;
    margin-right: 8px;
    /* Moves icon away from edge */
}

.menu-text {
    font-size: 14px;
}

.dark-switch {
    transform: scale(0.8);
    margin-left: 4px;
    /* Pushes switch to the right */
}

/* Dark mode styles */
.user-menu.dark {
    background-color: #001529 !important;
    color: #f0f6fc !important;
}

/* Light mode styles */
.user-menu.light {
    background-color: inherit !important;
    color: #000000 !important;
}

/* Ensuring icons and text colors match */
.user-menu.dark .menu-item,
.user-menu.dark .menu-icon {
    color: #f0f6fc !important;
}

.user-menu.light .menu-item,
.user-menu.light .menu-icon {
    color: #000000 !important;
}

/* Correcting menu item padding */
.user-menu .ant-menu-item {
    margin: 0;
    /* Even padding on all sides */
    display: flex;
    align-items: center;
    border-radius: 6px;
    /* Rounded corners */
}
/* General Header Styles */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.app-title {
    font-size: clamp(18px, 5vw, 24px);
    /* min 18px, scales with screen, max 24px */
    margin: 0;
    font-weight: bold;
}


.app-title-link {
    color: inherit;
    text-decoration: none;
}

/* Light Mode */
.app-header.light {
    background-color: #FCFCFC;
    color: #000000;
    box-shadow: inset 0 -1px 0 #dfe1e3b3;
}

.app-header.light .ant-menu-item {
    color: #000000;
}

.app-header.light .ant-drawer {
    background-color: #f0f2f5;
}

/* Dark Mode */
.app-header.dark {
    background-color: #001529;
    color: #f0f6fc;
    box-shadow: inset 0 -1px 0 #3d444db3;
}

.app-header.dark .ant-menu-item {
    color: #f0f6fc;
}

/* Menu and Dark Mode Switch Alignments */
.desktop-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.desktop-menu>* {
    margin: 0 16px;
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    color: inherit;
}

.custom-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.custom-menu.horizontal {
    flex-direction: row;
}

.custom-menu.vertical {
    flex-direction: column;
    align-items: flex-start;
}

/* Automatically stack vertically on small screens */
@media (max-width: 768px) {
    .custom-menu.horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-link {
        width: 100%;
        text-align: left;
    }
}

.menu-link {
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    color: #444444;
    padding-inline: 12px;
    transition: background-color 0.2s, color 0.2s;
}

.menu-link:hover {
    background-color: rgba(24, 144, 255, 0.1);
    color: #40a9ff;
}

.menu-link.active {
    background-color: #e6f7ff;
    color: rgb(7, 92, 171);
}

.custom-menu.dark .menu-link {
    color: #ccc;
}

.custom-menu.dark .menu-link:hover {
    background-color: rgba(14, 116, 211, 0.2);
    color: #40a9ff;
}

.custom-menu.dark .menu-link.active {
    background-color: rgba(14, 116, 211, 0.2);
    color: #77c2ff;
}
/* ========== Base Card Styles ========== */
.topic-card {
    width: 100%;
    position: relative;
    border-radius: 12px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #fff;
    box-shadow:
        inset 0 4px 6px rgba(0, 0, 0, 0.415),
        /* subtle inner shadow */
        0 4px 12px rgba(0, 0, 0, 0.08);
    /* original outer shadow */
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* ========== Card Background ========== */
.topic-card-gradient {
    width: 100%;
    height: 180px;
    border-radius: inherit;
    background-size: cover;
    background-position: center;
}

@media (max-width: 576px) {
    .topic-card-gradient {
        height: 140px;
    }
}

/* ========== Title ========== */
.topic-card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.01em;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    z-index: 2;
    word-break: keep-all;
    overflow-wrap: break-word;
    padding: 0 5px;
    line-height: 1.4;
}

/* Responsive font sizing */
@media (max-width: 768px) {
    .topic-card-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .topic-card-title {
        font-size: 0.875rem;
    }
}

/* ========== Overlay ========== */
.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1;
}

.topic-card:hover .hover-overlay {
    opacity: 1;
}

/* ========== Image (optional use) ========== */
.topic-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: filter 0.3s ease;
}

.topic-card:hover .topic-card-img {
    filter: brightness(1) contrast(1.05);
}

/* ========== Gradients (minimal tone-down versions) ========== */
.gradient1 {
    background: linear-gradient(135deg, #a8d0ff 0%, #e1f0ff 100%);
}

.gradient2 {
    background: linear-gradient(135deg, #e9c9ff 0%, #b9a9ff 100%);
}

.gradient3 {
    background: linear-gradient(135deg, #ffd6d6 0%, #ffe6f0 100%);
}

.gradient4 {
    background: linear-gradient(135deg, #f9f7f7 0%, #d6f0ff 100%);
}

.gradient5 {
    background: linear-gradient(135deg, #b1e4d8 0%, #d9fff0 100%);
}

.gradient6 {
    background: linear-gradient(135deg, #ffd6a5 0%, #fff1e0 100%);
}

/* ========== Light/Dark Mode ========== */
.light-topic-card-title {
    color: #1e1e1e !important;
}

.dark-topic-card-title {
    color: #02060e !important;
}

/* ========== Theme subtle scale effect ========== */
.topic-card-theme:hover {
    transform: translateY(-4px) scale(1.01);
}
.quiz-container{width:100%;max-width:800px;padding:16px;margin:0 auto;box-sizing:border-box}@media(max-width: 1023px){.quiz-container{max-width:600px}}@media(max-width: 767px){.quiz-container{max-width:520px}}@media(max-width: 479px){.quiz-container{max-width:100%;padding:12px}}.quiz-container #quiz-vertical-space{width:100%}.quiz-container #quiz-vertical-space .ant-space-item{width:100%;margin-bottom:10px}.quiz-container #quiz-vertical-space .ant-space-item .answer-btn{height:100%;white-space:normal;word-break:break-word}
/* ====== Light Mode (Default) ====== */
.explanation-card {
  background-color: #fff;
  border-radius: 12px;
  max-width: 850px;
  width: 100%;
  margin: 2rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.explanation-card .ant-card-body {
  padding: 1.5rem 2rem;
}

.ant-card-head-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 12px;
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
  letter-spacing: 0.02em;
}

.description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 1rem;
}

.divider {
  height: 1px;
  background-color: #ddd;
  margin: 1.5rem 0;
  border: none;
}

.bullet-list {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.bullet-item {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.4rem;
}

.bullet-icon {
  color: #4a90e2;
  /* subtle blue accent */
  margin-right: 0.6rem;
  flex-shrink: 0;
}

/* Keep bullet icons aligned with text */
.bullet-item span {
  display: inline-block;
  vertical-align: middle;
}

.example-text {
  font-size: 0.85rem;
  font-weight: 400;
  color: #666;
  font-style: italic;
  margin-top: 0.4rem;
}

/* ====== Dark Mode ====== */
.explanation-card.dark {
  background-color: #121620;
  border: 1px solid #2c2f3a;
  color: #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.explanation-card.dark .ant-card-head-title {
  color: #d1d5db;
}

.explanation-card.dark .description {
  color: #b0b8c1;
}

.explanation-card.dark .divider {
  background-color: #2c2f3a;
}

.explanation-card.dark .bullet-list {
  list-style-type: disc;
}

.explanation-card.dark .bullet-item {
  color: #d1d5db;
}

.explanation-card.dark .bullet-icon {
  color: #6ba8ff;
}

.explanation-card.dark .example-text {
  color: #a0a8b8;
}
.example-card {
    /* Ensure every card is centralized and has the same width */
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(33, 33, 33, 0.1);

    .ant-card-body {
        .example-card-explanation {
            margin-bottom: 0;
        }
    }
}

/* Sentence styling */
.example-card-sentence {
    border-radius: 8px;
    padding: 6px;
    font-weight: 500;
    margin-bottom: 10px;
}

.example-card-sentence.light {
    background-color: #d1e0ff;
}

.dark .example-card-sentence.light {
    background-color: #4a6fa5;
    /* Light blue for light sentences */
}

.dark .example-card-sentence.dark {
    background-color: rgba(96, 101, 106, 0.615);
    /* Darker gray for dark sentences */
}
.conjugation-table-container {
  max-width: 850px;
  margin: 8px auto;

  .conjugation-table-title {
    font-weight: 600;
    text-align: center;
    color: #7bbdfb;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .ant-table-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    width: 100%;

    .ant-table-thead>tr>th {
      text-align: center;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 12px 8px;
      background-color: #c7ddfc;
      color: #222;
    }

    .ant-table-tbody>tr>td {
      text-align: center;
      font-size: 0.8rem;
      padding: 12px 8px;
      color: #333;
      border-bottom: 1px solid #eaeaea;
    }

    .ant-table-tbody>tr:nth-child(odd) {
      background-color: #fafafa;
    }

    .ant-table-tbody>tr:nth-child(even) {
      background-color: #ffffff;
    }
  }

  .ant-divider {
    background-color: #d9d9d9;
  }

  /* ========== Dark Mode ========== */
  &.dark {
    .conjugation-table-title {
      color: #a4c8ff;
    }

    .ant-table {
      border: 1px solid #3a3a3a;

      .ant-table-thead>tr>th {
        background-color: #2f3b4a;
        color: #e0e0e0;
      }

      .ant-table-tbody>tr>td {
        color: #d1d1d1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .ant-table-tbody>tr:nth-child(odd) {
        background-color: #1e252f;
      }

      .ant-table-tbody>tr:nth-child(even) {
        background-color: #252d39;
      }
    }

    .ant-divider {
      background-color: rgba(255, 255, 255, 0.1);
    }
  }
}

@media only screen and (max-width: 480px) {
  .conjugation-table-container {
    max-width: 90vw;
    margin: 8px auto;
  }
}
.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
#root{height:100%}#app #page,#app #topics-main-container,#app #quiz-main-container{padding:24px;min-height:calc(100vh - 64px)}#app #page .page-title,#app #topics-main-container .page-title,#app #quiz-main-container .page-title{margin-bottom:20px;font-weight:650;font-size:1.3rem;line-height:1.3;position:relative;color:inherit;display:block;text-align:center}#app #page .section,#app #topics-main-container .section,#app #quiz-main-container .section{margin-bottom:32px;white-space:normal}#app #page.dark,#app #topics-main-container.dark,#app #quiz-main-container.dark{background-color:#151b23;color:#e0e0e0}#app #page.dark .ant-card,#app #topics-main-container.dark .ant-card,#app #quiz-main-container.dark .ant-card{background-color:rgba(36,39,43,.7098039216) !important;color:#e0e0e0;border:1px solid #575757}#app #page.dark .ant-card .ant-card-head,#app #topics-main-container.dark .ant-card .ant-card-head,#app #quiz-main-container.dark .ant-card .ant-card-head{color:rgb(244.4,244.4,244.4);background-color:#203144;border-bottom:1px solid #dcdcdc}#app #page.dark .ant-card .ant-card-head-title,#app #topics-main-container.dark .ant-card .ant-card-head-title,#app #quiz-main-container.dark .ant-card .ant-card-head-title{color:rgb(248.9886363636,247.5511363636,250.9488636364);white-space:normal}#app #page.dark .ant-card .ant-card-body,#app #topics-main-container.dark .ant-card .ant-card-body,#app #quiz-main-container.dark .ant-card .ant-card-body{color:#e0e0e0}#app #page.dark .ant-btn:not(.ant-btn-primary),#app #topics-main-container.dark .ant-btn:not(.ant-btn-primary),#app #quiz-main-container.dark .ant-btn:not(.ant-btn-primary){background-color:#2a2a2e;color:#e6e6e6;border-color:#444}#app #page.dark .ant-btn:not(.ant-btn-primary):hover,#app #topics-main-container.dark .ant-btn:not(.ant-btn-primary):hover,#app #quiz-main-container.dark .ant-btn:not(.ant-btn-primary):hover{background-color:#38383d;border-color:#555}#app #page.dark .answer-btn.correct,#app #topics-main-container.dark .answer-btn.correct,#app #quiz-main-container.dark .answer-btn.correct{background-color:#245c39 !important;color:#c3e6cb !important;border-color:#28a745 !important}#app #page.dark .answer-btn.incorrect,#app #topics-main-container.dark .answer-btn.incorrect,#app #quiz-main-container.dark .answer-btn.incorrect{background-color:#5e1c1c !important;color:#f5c6cb !important;border-color:#dc3545 !important}#app #page.dark .ant-table,#app #topics-main-container.dark .ant-table,#app #quiz-main-container.dark .ant-table{background-color:#151b23;color:#e0e0e0;border-radius:.5rem !important;border:1px solid #575757}#app #page.dark .ant-table .ant-table-thead>tr>th,#app #topics-main-container.dark .ant-table .ant-table-thead>tr>th,#app #quiz-main-container.dark .ant-table .ant-table-thead>tr>th{background-color:#203144;color:#e0e0e0}#app #page.dark .ant-table .ant-table-tbody>tr>td,#app #topics-main-container.dark .ant-table .ant-table-tbody>tr>td,#app #quiz-main-container.dark .ant-table .ant-table-tbody>tr>td{background-color:#151b23;color:#e0e0e0}#app #page.dark .ant-tag,#app #topics-main-container.dark .ant-tag,#app #quiz-main-container.dark .ant-tag{color:#000}#app #page.dark .ant-tag.dark,#app #topics-main-container.dark .ant-tag.dark,#app #quiz-main-container.dark .ant-tag.dark{background-color:#151b23;color:#e0e0e0;border:1px solid #575757}#app #page.dark .ant-tag.dark:hover,#app #topics-main-container.dark .ant-tag.dark:hover,#app #quiz-main-container.dark .ant-tag.dark:hover{background-color:#3a4754}#app #page.dark .ant-tag.dark.ant-tag-geekblue,#app #topics-main-container.dark .ant-tag.dark.ant-tag-geekblue,#app #quiz-main-container.dark .ant-tag.dark.ant-tag-geekblue{background-color:#3a4754;color:#fff}#app #page.dark h1,#app #page.dark h2,#app #page.dark h3,#app #page.dark h4,#app #page.dark h5,#app #page.dark h6,#app #page.dark p,#app #page.dark span,#app #page.dark label,#app #page.dark li,#app #page.dark .ant-typography,#app #topics-main-container.dark h1,#app #topics-main-container.dark h2,#app #topics-main-container.dark h3,#app #topics-main-container.dark h4,#app #topics-main-container.dark h5,#app #topics-main-container.dark h6,#app #topics-main-container.dark p,#app #topics-main-container.dark span,#app #topics-main-container.dark label,#app #topics-main-container.dark li,#app #topics-main-container.dark .ant-typography,#app #quiz-main-container.dark h1,#app #quiz-main-container.dark h2,#app #quiz-main-container.dark h3,#app #quiz-main-container.dark h4,#app #quiz-main-container.dark h5,#app #quiz-main-container.dark h6,#app #quiz-main-container.dark p,#app #quiz-main-container.dark span,#app #quiz-main-container.dark label,#app #quiz-main-container.dark li,#app #quiz-main-container.dark .ant-typography{color:#e0e0e0}#app #page.dark .ant-divider,#app #topics-main-container.dark .ant-divider,#app #quiz-main-container.dark .ant-divider{background-color:hsla(0,0%,100%,.1)}#app #page.dark .ant-progress .ant-progress-text,#app #topics-main-container.dark .ant-progress .ant-progress-text,#app #quiz-main-container.dark .ant-progress .ant-progress-text{color:#e0e0e0}
.light{color:#000}.light .ant-card{color:#000;border:1px solid #dcdcdc}.light .ant-card .ant-card-head{color:#000;background-color:#dee9ff;border-bottom:1px solid #dcdcdc}.light .ant-card .ant-card-head-title{color:#031f2d;white-space:normal}.light .ant-card .ant-card-body{color:#000}.light .ant-table{background-color:#fff;color:#000}.light .ant-btn:not(.ant-btn-primary){background-color:inherit;color:#373737}.light .answer-btn.correct{background-color:#75ffaa !important;color:#006417 !important}.light .answer-btn.incorrect{background-color:#ff7575 !important;color:#620008 !important}

/*# sourceMappingURL=main.64bed417.css.map*/