@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.calc-side-23bfaf511e0aaa {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.calc-23bfaf511e0aaa {
  --yellow: #f5c518;
  --cream: #fdf8e1;
  --blue-dark: #1a2a5e;
  --calc-bg: linear-gradient(145deg, #b8dce8, #d4ecb0);
  --white: #fff;
  --green: #3cb043;
  --red-soft: #f9a8a8;
  --radius: 16px;
  background: var(--calc-bg);
  border-radius: 20px;
  padding: 18px 18px 20px;
  box-shadow: 0 8px 32px rgba(90, 160, 180, 0.25), 0 2px 8px rgba(90, 160, 180, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 260px;
}

/* display */
.calc_display-23bfaf511e0aaa {
  background: rgba(180, 220, 230, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
  text-align: right;
  min-height: 46px;
  letter-spacing: 1px;
  box-shadow: inset 0 2px 6px rgba(90, 160, 180, 0.15);
}

/* grid */
.calc_grid-23bfaf511e0aaa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.calc_button-23bfaf511e0aaa {
  height: 50px;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.1s, box-shadow 0.1s, filter 0.1s;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.08);
}

.calc_button-23bfaf511e0aaa:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.calc_button-23bfaf511e0aaa:hover {
  filter: brightness(1.06);
}

.calc_button_num-23bfaf511e0aaa {
  background: var(--white);
  color: #2a6abf;
}

.calc_button_del-23bfaf511e0aaa {
  background: #f9a8a8;
  color: #b02020;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.calc_button_eq-23bfaf511e0aaa {
  background: var(--green);
  color: var(--white);
  font-size: 20px;
}

.calculator-23bfaf511e0aaa {
  display: grid;
  width: 100%;
  max-width: 500px;
  grid-template-columns: repeat(3, 1fr);
}

.exercise-d2f3f6e34293b4 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.exercise_num-d2f3f6e34293b4 {
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.1;
}

/* .exercise_row_container { */
/* font-size: 52px; */
/* font-weight: bold; */
/* } */
.result_container-2fc53bb3a6427b {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 80%;
}

.result_row-2fc53bb3a6427b {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.main-b8ad18dbb3a4d0 {
  --blue-light: #b3d9f7;
  --blue-dark: #1a6fbf;
  --yellow: #f5c518;
  --yellow-dark: #e0b000;
  --green: #3cb043;
  --red: #e53935;
  --white: #ffffff;
  --text-dark: #1a2a3a;
  --text-mid: #4a5a6a;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 10px rgba(26, 111, 191, 0.10);
  font-family: "Nunito", sans-serif;
  background: #e8f2fb;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 20px;
  min-height: 100vh;
}

.generator-b8ad18dbb3a4d0 {
  background: var(--blue-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(26, 111, 191, 0.16);
  width: 100%;
  max-width: 1100px;
}

.generator_header-b8ad18dbb3a4d0 {
  background: var(--yellow);
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  text-transform: uppercase;
  border-bottom: 3px solid var(--yellow-dark);
}

.generator_body-b8ad18dbb3a4d0 {
  padding: 20px 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 18px 20px;
  align-items: start;
}

/* ── COLUMNS ── */
.col-b8ad18dbb3a4d0 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── FIELD ── */
.field-b8ad18dbb3a4d0 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field_label-b8ad18dbb3a4d0 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
}

/* ── SPINNER ── */
.spinner-b8ad18dbb3a4d0 {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(90, 172, 238, 0.3);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.spinner_input-b8ad18dbb3a4d0 {
  flex: 1;
  border: none;
  outline: none;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  background: transparent;
  min-width: 0;
}

.spinner_buttons-b8ad18dbb3a4d0 {
  display: flex;
  flex-direction: column;
  border-left: 1.5px solid rgba(90, 172, 238, 0.2);
}

.spinner_buttons-b8ad18dbb3a4d0 button {
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  font-size: 9px;
  transition: background 0.15s;
}

.spinner_btns-b8ad18dbb3a4d0 button:hover {
  background: rgba(90, 172, 238, 0.15);
}

.spinner_btns-b8ad18dbb3a4d0 button:first-child {
  border-bottom: 1px solid rgba(90, 172, 238, 0.15);
}

.generator_footer-b8ad18dbb3a4d0 {
  padding: 16px 22px 22px;
  display: flex;
  justify-content: flex-end;
}

.button-start-b8ad18dbb3a4d0 {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 22px;
  padding: 12px 36px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(60, 176, 67, 0.35);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.button-start-b8ad18dbb3a4d0:hover {
  background: #34a038;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(60, 176, 67, 0.4);
}

.button-start-b8ad18dbb3a4d0:active {
  transform: translateY(0);
}

.main-a998dc8ee0e282 {
  --yellow: #f5c518;
  --cream: #fdf8e1;
  --blue-dark: #1a2a5e;
  --calc-bg: linear-gradient(145deg, #b8dce8, #d4ecb0);
  --white: #fff;
  --green: #3cb043;
  --red-soft: #f9a8a8;
  --radius: 16px;
  font-family: "Nunito", sans-serif;
  background: var(--yellow);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 12px;
}

.container-a998dc8ee0e282 {
  flex: 1;
  background: var(--cream);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: calc(100vh - 24px);
}

.exercise_side-a998dc8ee0e282 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 2px solid rgba(245, 197, 24, 0.3);
}

/* faded background icons */
.bg_icons-a998dc8ee0e282 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg_icons-a998dc8ee0e282 span {
  position: absolute;
  font-size: 48px;
  opacity: 0.09;
  user-select: none;
}
.bg_icons-a998dc8ee0e282 span:nth-child(1) {
  top: 6%;
  left: 8%;
  font-size: 56px;
}
.bg_icons-a998dc8ee0e282 span:nth-child(2) {
  top: 12%;
  left: 55%;
  font-size: 40px;
}
.bg_icons-a998dc8ee0e282 span:nth-child(3) {
  top: 22%;
  left: 28%;
  font-size: 32px;
}
.bg_icons-a998dc8ee0e282 span:nth-child(4) {
  top: 35%;
  left: 72%;
  font-size: 50px;
}
.bg_icons-a998dc8ee0e282 span:nth-child(5) {
  top: 50%;
  left: 12%;
  font-size: 44px;
}
.bg_icons-a998dc8ee0e282 span:nth-child(6) {
  top: 60%;
  left: 42%;
  font-size: 36px;
}
.bg_icons-a998dc8ee0e282 span:nth-child(7) {
  top: 70%;
  left: 68%;
  font-size: 52px;
}
.bg_icons-a998dc8ee0e282 span:nth-child(8) {
  top: 80%;
  left: 20%;
  font-size: 38px;
}
.bg_icons-a998dc8ee0e282 span:nth-child(9) {
  top: 88%;
  left: 80%;
  font-size: 42px;
}
.bg_icons-a998dc8ee0e282 span:nth-child(10) {
  top: 4%;
  left: 82%;
  font-size: 34px;
}
.bg_icons-a998dc8ee0e282 span:nth-child(11) {
  top: 45%;
  left: 50%;
  font-size: 46px;
}
.bg_icons-a998dc8ee0e282 span:nth-child(12) {
  top: 75%;
  left: 5%;
  font-size: 30px;
}

/* .main_container { */
/* width: 100%; */
/* height: 100vh; */
/* } */
/* .solve_exercise_layout { */
/* display: grid; */
/* grid-template-columns: repeat(2, 1fr); */
/* place-items: stretch; */
/* width: 100%; */
/* height: 100%; */
/* } */
/* .form_container { */
/* display: flex; */
/* justify-content: center; */
/* align-items: center; */
/* width: 100%; */
/* } */
/* .calc_container { */
/* display: flex; */
/* justify-content: center; */
/* align-items: center; */
/* width: 100%; */
/* } */
