/* src/styles/index.css.en */
/* src/styles/Button.css */

#root{
  display: flex;
  align-items: center;
  justify-content: center;
}

math { font-family: 'Times New Roman', serif; }

.quezzio-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    color: rgb(0, 140, 255);
  }
  .sm {
    font-size: 10px;
  }
  .md {
    font-size: 15px;
  }
  .lg {
    font-size: 24px;
  }
  .primary {
    background-color: rgb(80, 80, 245);
    color: black;
  }
  .success {
    background-color: rgb(49, 206, 49);
    color: black;
  }
  .error {
    background-color: rgb(255, 0, 0);
    color: black;
  }
  .default {
    background-color: inherit;
  }
  .quezzio-button:hover {
    opacity: 1;
  }

  /* src/styles/QuestionBox.css */
  .quezzio-questionbox {
    width: 80vw;
    background-color: rgb(255, 255, 255);
    justify-items: start;
    color: black;
    padding: 20px;
    border-radius: 5px;
    font-family:
      Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    overflow: hidden;
    margin-top: .8rem;
  }
  .labelbox {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .label {
    border: 0.5px solid rgb(0, 140, 255);
    padding: 5px 10px;
    border-radius: 20px;
    color: rgb(0, 140, 255);
  }
  .labelbox-button-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .question-container {
    width: 100%;
  }
  .question {
    text-align: left;
  }
  .question-part {
    display: flex;
    justify-content: space-between;
  }
  .question-part p {
    text-align: left;
    margin: 1rem 0;
  }
  .point-container {
    align-content: center;
  }
  .correct-point {
    color: green;
  }
  .wrong-point {
    color: red;
  }
  .toggle-switch {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
  }
  .question-metadata-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .usscs-box {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    gap: 10px;
  }
  .usscs-box span {
    border: 0.5px solid black;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    padding: 5px 10px;
  }
  .uuid-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .uuid-box span {
    border: 0.5px solid black;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    padding: 5px 10px;
  }
  .tag-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .tag-box span {
    border-radius: 10px;
    background-color: rgb(218, 217, 217);
    padding: 1px 7px;
  }
  .subject-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .subject-box span {
    color: green;
    border: 0.5px solid currentColor;
    border-radius: 15px;
    font-size: 13px;
    padding: 5px 10px;
  }

  /* src/styles/SingleExpression.css */
  .answer-part {
    display: block;
    text-align: left;
    width: 100%;
    font-family:
      Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
  }

  /* src/styles/MultiChoice.css */
  .multi-choice-container {
    background-color: #EBEBEB;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 1em;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
    padding: .75rem 20px;
    margin: .5rem 0;
    border-radius: 5px;
    font-family:
      Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    overflow: hidden;
  }
  .multi-choice-container + .multi-choice-container {
    margin-top: 0.5em;
  }
  .multi-choice-container span {
    width: auto;
    text-align: left;
  }
  input[type=radio] {
    appearance: none;
    background-color: white;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 2px solid currentColor;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    cursor: pointer;
  }
  input[type=radio]:checked {
    background-color: inherit;
    color: #1976D2;
    border: none;
  }
  input[type=radio]::before {
    content: "";
    display: block;
    width: 0.8em;
    height: 0.8em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: currentColor;
    transform-origin: bottom left;
    clip-path: polygon(15% 50%, 35% 70%, 85% 20%, 100% 35%, 35% 100%, 0 60%);
  }
  input[type=radio]:checked::before {
    transform: scale(1);
  }

  /* src/styles/MultiSelection.css */
  .multi-select-container {
    background-color: #EBEBEB;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 1em;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
    padding: 0em 20px;
    border-radius: 5px;
    font-family:
      Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    overflow: hidden;
  }
  .multi-select-container + .multi-select-container {
    margin-top: 0.5em;
  }
  .multi-select-container span {
    width: auto;
    text-align: left;
  }
  input[type=checkbox] {
    appearance: none;
    background-color: white;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 2px solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    cursor: pointer;
  }
  input[type=checkbox]:checked {
    background-color: #1976D2;
    border-color: #1976D2;
    color: white;
  }
  input[type=checkbox]::before {
    content: "";
    display: block;
    width: 0.8em;
    height: 0.8em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: currentColor;
    transform-origin: bottom left;
    clip-path: polygon(15% 50%, 35% 70%, 85% 20%, 100% 35%, 35% 100%, 0 60%);
  }
  input[type=checkbox]:checked::before {
    transform: scale(1);
  }

  /* src/styles/SolutionStepModal.css */
  .solstepmodal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 999;
    overflow: hidden;
  }
  .solstepmodal {
    display: flex;
    max-height: 80vh;
    width: 70%;
    background-color: white;
    padding: 20px 20px;
    flex-direction: column;
    gap: 10px;
    justify-items: start;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
  }
  .solstepsection {
    width: 97%;
    height: auto;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.384);
    justify-items: start;
    color: black;
    font-family:
      Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
  }
  .divider {
    transform: scaleY(0.7);
  }

  /* src/styles/QuestionList.css */
  .questionlist {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 20px;
    gap: 20px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.226);
    border-radius: 5px;
  }
