@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* default styles start ================================  */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: 0;
}

.zils {
  color: blue;
}

.peleks {
  color: gray;
}

.izmerL {
  font-size: 20px;
}

br {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
/* default styles end ================================  */

/* main block styles start ================================  */
.main {
  background-color: #f0f0f0;
  width: 100%;
  height: fit-content;
  min-height: calc(100vh - 100px);
  padding: 20px;
}

.main__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.title {
  text-align: center;
}

.main__task--area {
  text-align: center;
  margin-bottom: 20px;
  width: clamp(100px, 60vw, 400px);
  min-height: 424px;
}

.main__task-label {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 0 auto;
}

.main__task-label .error {
  position: absolute;
  bottom: -15px;
  left: 2px;
  font-size: 9px;
  color: red;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

select {
  width: max-content;
  min-height: 35px;
  background-color: #dcf5de;
  padding: 0.5em;
  border: #b2eeac 2px solid;
  outline: none;
  cursor: pointer;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
}

select>option {
  background-color: #baf4ba;
  padding: 0.5em;
}

/* DROPDOWN MENU start */
.select2-container .select2-selection--single .select2-selection__rendered {
  text-align: left;
}

.select2-search--dropdown .select2-search__field {
  font-size: 21px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #b2eeac !important;
  color: inherit !important;
}

/* DROPDOWN MENU end */

.main__area--enter {
  display: flex;
  gap: 10px;
  flex-direction: column;
  text-align: left;
  display: flex;
  flex-direction: column;
}

input {
  padding: 4px 6px;
  font-size: clamp(10px, 6vw, 27px);
}

button {
  padding: 8px 15px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  -o-transition: .2s linear;
  -webkit-transition: .2s linear;
  -moz-transition: .2s linear;
  -ms-transition: .2s linear;
  transition: .2s linear;
  margin-top: 20px;
  order: 2;
}

.InputsArea {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}

button:hover {
  background-color: #7cafe4;
}



textarea {
  margin-top: 10px;
  padding: 10px;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 15px;
  resize: none;
}

.box {
  text-align: left;
  white-space: pre-wrap;
}

details {
  text-align: center;
  padding: 15px 25px;
  background-color: antiquewhite;
  border: 1px solid #f0f0f0;
  -o-border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  word-break: break-all;
}

pre {
  background: aliceblue;
  padding: 15px;
  font-size: clamp(6px, 4vw, 16px);
  text-wrap: balance;
}

summary {
  font-size: clamp(6px, 6vw, 18px);
}
/* main block styles end ================================  */

/* footer block styles start ================================  */
.footer {
  width: 100%;
  height: 100px;
  background-color: #7cafe4;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
/* footer block styles start ================================  */