/* main button style*/
.button {
    background: #0f9ca3;
    padding: 15px 30px;
    border-radius: 3px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    color: #ffff;
    display: inline-block;
    min-width: 150px;
    font-size: 1.1em;
    text-align: center;
}

.button:hover {
    background: #333;
    color: #fff;
}

/* checkbox for list */
ul.lists input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

/* styled checkbox as switch */
ul.lists label {
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
}

/* main switch */
ul.lists label:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 40px;
  height: 14px;
  background: #d3d9dd;
  border-radius: 10px;
  transition: background 0.4s ease;
}

/* circle btn of switch */
ul.lists label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgb(143 158 159);
  transition: all 0.4s ease;
}

/* active state switch */
ul.lists input[type="checkbox"]:checked + label:before {
  background: #d3d9dd;
}

ul.lists input[type="checkbox"]:checked + label:after {
  transform: translateX(20px);
  background: #0f9ca3;
  box-shadow: 0 3px 8px rgb(14 156 163);
}

/* link style */
a {
    color: #aea9aa; /* Спокойный оттенок синего для текста */
    text-decoration: none; /* Убираем подчеркивание */ 
}

a:hover {
    color: #000; /* Немного темнее при наведении */
    border-bottom-color: #000; /* Подчеркивание становится видимым */
}

a:focus {
    outline: none; /* Убираем стандартный фокус */
    border-bottom-color: #000; /* Показываем фокус через подчеркивание */
}
