html, body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #FDF5E6;
  width: 100%;
  height: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-size: 15px;
  color: #696969;
  font-style: normal;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 20vh;
  background-image: url("photo/flowers.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
header .header_text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  width: 50%;
  height: 5vh;
  font-size: 25px;
  color: var(--color);
  background-color: white;
}
header .header_button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 110px;
  height: 40px;
  padding: 5px;
  background-color: #f5e6cc;
  color: black;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.radio-group {
  display: flex;
  flex-direction: column;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 97%;
  height: auto;
  max-height: none;
  padding: 20px;
  gap: 20px;
  margin-top: 30px;
  overflow: visible;
}

.list-container {
  display: none;
  width: 40%;
  min-height: 50px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  overflow: hidden;
}

.spisok {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spisok li {
  padding: 8px 12px;
  text-align: left;
}

label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
  font-family: "Arial", sans-serif;
}

.input {
  outline: none;
  height: 2vh;
  width: 30%;
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 25px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

button {
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  background-color: rgba(21, 105, 98, 0.55);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

input[type=checkbox] {
  width: 20px;
  height: 10px;
  accent-color: #4CAF50;
}

.theme-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

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