@charset "UTF-8";
.form, .task, .auth {
  width: 100%;
  max-width: 860px;
  background: #d0d0d0;
  margin: 40px auto 20px;
  padding: 40px 30px 30px;
  border-radius: 40px; }

.form__record {
  cursor: pointer;
  position: relative;
  padding: 10px;
  border-top: 4px solid black;
  background-color: white;
  margin: 7px;
  border-radius: 9px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(70, 70, 70, 0.7);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
  .form__record:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(90, 90, 90, 0.7);
    border-top-color: rgba(0, 0, 0, 0.25); }

body {
  position: relative; }

@use 'https://fonts.googleapis.com/css2?family=Roboto&display=swap';
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

@media (max-width: 680px) {
  /* Убираем стандартную подсветку элементов при касании на мобильных устройствах */
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } }
html, body {
  /* Сбрасываем отступы и гарантируем, что фон займёт весь экран */
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  /* чтобы не появлялась лишняя горизонтальная полоса прокрутки */
  /*
   * Сложный многослойный фон.
   * Состоит из основного светло-серого градиента, двух слоев текстуры
   * и радиального градиента для эффекта мягкого освещения.
  */
  background-color: #a5a5a5;
  /* Фоллбэк для старых браузеров */
  background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 35%), repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02) 2px, transparent 2px, transparent 35px), repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02) 2px, transparent 2px, transparent 35px), linear-gradient(170deg, #b9b9b9, #919191);
  background-size: cover;
  background-attachment: fixed; }

.page--index {
  /*
   * Фон для главной страницы.
   * Состоит из светлого градиента, легкой текстуры
   * и мягкой виньетки для акцента в центре.
  */
  background-color: #b9b9b9;
  /* Фоллбэк для старых браузеров */
  background-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, transparent 70%), repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(0, 0, 0, 0.02) 10px, rgba(0, 0, 0, 0.02) 11px), linear-gradient(170deg, white, #c8c8c8);
  background-size: cover;
  background-attachment: fixed; }
.page--list {
  /*
   * Концепция: "Шлифованный металл".
   * Светлый, структурированный фон.
  */
  background-color: #bebebe;
  /* Фоллбэк */
  background-image: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.4), transparent 70%), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0, rgba(0, 0, 0, 0.04) 2px, transparent 2px, transparent 4px), linear-gradient(160deg, #d2d2d2, #bebebe);
  background-size: cover;
  background-attachment: fixed; }
.page--task {
  /*
   * Концепция: "Фокус и концентрация".
   * Мягкое свечение на светло-сером фоне.
  */
  background-color: gainsboro;
  /* Фоллбэк */
  background-image: repeating-radial-gradient(circle at center, rgba(0, 0, 0, 0.03) 0, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 80px), radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, transparent 60%), linear-gradient(160deg, #ebebeb, gainsboro);
  background-size: cover;
  background-attachment: fixed; }
  @media (max-width: 680px) {
    .page--task {
      display: flex;
      min-height: 100vh;
      padding: 0 15px; } }
.page--archive {
  /*
   * Концепция: "Текстура камня или бумаги".
   * Элегантный фон с вертикальной текстурой.
  */
  background-color: #cdcdcd;
  /* Фоллбэк */
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5) 2px, transparent 2px, transparent 12px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 6px), linear-gradient(160deg, #d7d7d7, #cdcdcd);
  background-size: cover;
  background-attachment: fixed; }
.page--notifications {
  /*
   * Концепция: "Сигнальные волны".
   * Светлый фон с холодным оттенком.
  */
  background-color: #c8cdd2;
  /* Фоллбэк */
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 40%), linear-gradient(160deg, #d2d7dc, #c8cdd2);
  background-size: cover;
  background-attachment: fixed; }
.page--auth {
  /*
   * Минималистичный и чистый фон.
   * Мягкий градиент от почти белого к светло-серому.
  */
  background-color: #f8f9fa;
  /* Фоллбэк */
  background-image: linear-gradient(170deg, #fdfdfd 0%, #f1f2f3 100%);
  background-size: 100% 100%;
  background-attachment: fixed; }

@media (max-width: 680px) {
  body.page--archive {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0 15px; } }

@media (max-width: 680px) {
  body.page--index {
    display: flex;
    min-height: 100vh;
    padding: 0 15px; } }

.auth-container {
  display: flex; }
  @media (max-width: 680px) {
    .auth-container {
      min-height: 100vh;
      padding: 0 15px; } }

@media (max-width: 680px) {
  body.page--list {
    display: flex;
    min-height: 100vh;
    padding: 0 15px; } }

.button {
  transition: transform 0.3s, opacity 0.3s;
  position: relative; }
  .button:hover {
    transform: scale(1.2);
    opacity: 0.8; }
  .button--no-opacity:hover {
    opacity: 1; }

.button-reversed {
  transition: transform 0.3s, opacity 0.3s;
  position: relative;
  opacity: 0.8; }
  .button-reversed:hover {
    transform: scale(1.2);
    opacity: 1; }

.header {
  position: relative;
  display: flex;
  align-items: center; }
  .header__main-title {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    width: 100%;
    margin-bottom: -14px; }
  .header__subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    width: 100%; }
  .header.header__about-subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
    margin-top: -15px; }
  .header--bottom-indented {
    margin-bottom: 20px; }
  .header__icon {
    width: 35px;
    height: 37px;
    margin-left: 10px;
    margin-right: 10px; }
    .header__icon--lower {
      margin-top: 5px; }
    .header__icon--decreased {
      width: 30px;
      height: 32px; }
    .header__icon--right-edge {
      margin-left: 8px;
      margin-right: 2px;
      width: 20px;
      height: 23px; }
  .header__task-name {
    flex-grow: 1;
    font-size: 18px;
    box-sizing: border-box;
    text-align: center;
    word-wrap: break-word;
    margin-bottom: 20px; }
  .header--spaced {
    display: flex;
    flex-grow: 1;
    font-size: 18px; }
  .header--left-indented {
    margin-left: 10px; }
  .header--right-indented {
    margin-right: 30px; }
  .header--centered {
    justify-content: center; }
  .header__group--left {
    display: flex; }
    .header__group--left .header__icon:not(.header__icon--right-edge) {
      margin-left: 1px;
      margin-right: -2px; }

.form--lists {
  /*
   * Концепция: "Металлизированный холст".
   * Фон сочетает в себе плотную основу графита (#373a40)
   * и светлую тканевую текстуру, наложенную сверху.
   * В итоге создаётся ощущение прочного материала,
   * похожего на технический текстиль с металлическим отливом.
   */
  background-color: #373a40;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(-45deg, rgba(197, 197, 197, 0.8) 1px, rgba(0, 0, 0, 0.04) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px, transparent 8px), repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.37) 0, rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px, transparent 8px), linear-gradient(160deg, #dde4e9, #dfe2e4);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.25), inset 0 0 15px rgba(0, 0, 0, 0.4); }
.form--list {
  /*
   * Концепция: "Перекрестно-шлифованный металл" (светлый вариант).
   * Сочетает горизонтальные и вертикальные текстуры для создания
   * эффекта легкой, стильной обработки.
  */
  background-color: #f0f0f0;
  /* Фоллбэк */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07), inset 0 1px 1px rgba(242, 242, 242, 0.7); }
  @media (max-width: 680px) {
    .form--list {
      margin-bottom: 100px; } }
.form--task {
  /*III
   * Концепция: "Чистый сигнал".
   * Минималистичный дизайн с легким, едва заметным рисунком,
   * напоминающим расходящиеся волны.
   */
  background-color: rgba(248, 249, 252, 0.85);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background-image: repeating-radial-gradient(circle at center, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02) 1px, transparent 1px, transparent 40px);
  background-size: cover; }
.form--archive {
  /*
   * Концепция: "Текстура старой бумаги".
   * Теплый, слегка текстурированный фон, создающий
   * ощущение архивного документа.
   */
  background-color: rgba(245, 245, 240, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  background-image: repeating-linear-gradient(180deg, transparent, transparent 1px, rgba(0, 0, 0, 0.02) 1px, rgba(0, 0, 0, 0.02) 2px); }
  @media (max-width: 680px) {
    .form--archive {
      margin: 0;
      width: 100%; } }
.form--notifications {
  /*
   * Концепция: "Дыхание стекла" или "Легкая изморозь".
   * Едва уловимый эффект, созданный с помощью очень разреженного шума
   * поверх градиента. Добавляет текстуру, а не явный рисунок.
   */
  background-color: rgba(245, 248, 252, 0.92);
  backdrop-filter: blur(10px) saturate(100%);
  -webkit-backdrop-filter: blur(10px) saturate(100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  background-image: repeating-conic-gradient(rgba(0, 0, 0, 0.015) 0% 5%, transparent 5% 15%), linear-gradient(170deg, #f9fbff, #f0f3f9);
  background-size: 5px 5px, 100%; }
  @media (max-width: 680px) {
    .form--notifications {
      width: 93%; } }
.form__record {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .form__record p {
    flex-grow: 1;
    margin-right: 15px;
    min-width: 0; }
  .form__record a.form__text {
    flex-grow: 1;
    min-width: 0;
    word-wrap: break-word; }
    @media (max-width: 680px) {
      .form__record a.form__text.form__text--margin-right {
        white-space: normal;
        max-width: 85px;
        text-align: right; } }
  .form__record .form__record-actions a {
    white-space: nowrap;
    flex-shrink: 0; }
  .form__record:hover {
    transform: scale(1.05); }
    .form__record:hover .form__record-actions {
      opacity: 1;
      visibility: visible; }
  .form__record--bold {
    font-weight: bold !important;
    color: #742a2a; }
  .form__record--enlarged-gray {
    padding: 17px;
    border-top: 6px double #555555; }
.form__record-actions {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  margin-right: 10px;
  position: relative;
  right: -15px; }
.form__img-custom {
  width: 22px;
  height: 24px;
  display: block;
  margin: 0 5px; }
  .form__img-custom--increased {
    width: 30px;
    height: 33px; }
  .form__img-custom--marginal {
    margin-right: -3px; }
.form__user-message {
  text-align: center;
  font-size: 19px;
  margin-top: 30px; }
.form__text--padding-left {
  word-wrap: break-word;
  padding-left: 10px; }
  @media (max-width: 680px) {
    .form__text--padding-left {
      padding-left: 0;
      overflow-wrap: break-word;
      word-break: normal; } }
.form__text--margin-right {
  margin-right: 17px; }
.form__notification {
  position: relative;
  display: inline-block; }
  .form__notification--unread-count {
    color: white;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: 5px;
    background-color: #742a2a;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    border: 1px solid white; }
.form__menu {
  position: relative;
  z-index: 10;
  padding-top: 25px;
  border-top: 1px solid transparent;
  margin-top: 0 !important; }
.form__divider {
  width: 20%;
  border: none;
  border-top: 1px solid black;
  margin: 0.3rem auto; }
  @media (max-width: 680px) {
    .form__divider {
      width: 36%; } }

.list__form-container {
  position: relative;
  max-width: 860px;
  margin: 40px auto 20px; }
  @media (max-width: 680px) {
    .list__form-container {
      margin: auto;
      width: 100%; } }

@media (max-width: 680px) {
  .task {
    margin: auto; } }
.task .flatpickr-input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  transition: border 0.3s, box-shadow 0.3s;
  background-color: white; }
  .task .flatpickr-input:focus {
    border-color: #463b3b;
    outline: none;
    box-shadow: 0 0 6px #4a4742; }
.task--border-white {
  border: 17px solid white; }
  @media (max-width: 680px) {
    .task--border-white {
      padding-top: 0;
      padding-bottom: 12px; } }
.task--border-gray {
  border: 17px solid #d2d2d2; }
.task--opened {
  background: linear-gradient(135deg, #ffffff, #f7f9fc);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
.task__group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column; }
  .task__group--horizontal {
    flex-direction: row;
    gap: 25px;
    align-items: center; }
.task__row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 15px; }
  .task__row .flatpickr-wrapper {
    width: 100%; }
  @media (max-width: 680px) {
    .task__row {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px; } }
.task__label {
  font-weight: bold;
  font-size: 16px;
  color: #373a3d;
  flex-shrink: 0;
  width: 162px;
  margin-top: 14px; }
  @media (max-width: 680px) {
    .task__label {
      width: auto; } }
.task__data {
  word-wrap: break-word;
  font-size: 16px;
  margin-top: 14px; }
  @media (max-width: 680px) {
    .task__data {
      margin-top: 0; } }
  .task__data--indented {
    margin-top: 25px;
    margin-left: 4px;
    padding-left: 15px;
    border-left: 3px solid #ccc; }
  .task__data--bolder-text {
    font-weight: bold;
    color: #63230d; }
.task__input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  transition: border 0.3s, box-shadow 0.3s;
  background-color: white; }
  .task__input:focus {
    border-color: #463b3b;
    outline: none;
    box-shadow: 0 0 6px #4a4742; }
.task__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px; }
  .task__checkbox-label--offset {
    margin-left: auto; }
    @media (max-width: 680px) {
      .task__checkbox-label--offset {
        margin-left: 0;
        margin-top: 20px; } }
.task__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: black; }
.task__actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center; }
.task__submit {
  display: inline-block;
  padding: 12px 24px;
  background-color: #252525;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  text-decoration: none; }
  .task__submit:hover {
    background-color: black;
    transform: translateY(-5px); }
  @media (max-width: 680px) {
    .task__submit:not(.task__submit--small) {
      width: 100%;
      box-sizing: border-box; } }
.task__submit.loading {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  transition: none !important; }
.task__bottom-line {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem; }

textarea.task__input {
  min-height: 70px;
  resize: vertical;
  font-family: inherit; }
  textarea.task__input.task__input--enlarged {
    min-height: 80px;
    margin-bottom: -35px; }

.task__row--column {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px; }
  @media (max-width: 680px) {
    .task__row--column {
      margin-top: -6px;
      gap: 3px; } }

#checklist-container, #checklist-view-container {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px; }

.checklist-item-row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
  gap: 10px; }

.task__input--checklist {
  flex-grow: 1; }

.button-reversed--small {
  padding: 4px;
  line-height: 0; }
  .button-reversed--small .form__img-custom {
    width: 16px;
    height: 16px;
    margin: 0; }

.checklist-item-text--completed {
  text-decoration: line-through;
  opacity: 0.6;
  color: #555; }

#checklist-view-container .checklist-item-row {
  justify-content: space-between; }

#checklist-view-container .task__checkbox-label {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-right: 10px; }

#checklist-view-container .checklist-item-text {
  margin-left: 8px; }

.task__submit--small {
  margin-top: -12px;
  padding: 8px 16px;
  font-size: 13px;
  align-self: flex-start; }
  @media (max-width: 680px) {
    .task__submit--small {
      margin-top: -2px;
      margin-bottom: -16px; } }

@media (max-width: 680px) {
  .form--task .task__actions {
    flex-direction: column;
    gap: 10px; } }

.task__datetime-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px; }
  .task__datetime-wrapper .task__row {
    margin-bottom: 0;
    flex-grow: 1; }
  .task__datetime-wrapper .task__checkbox-group {
    display: flex;
    gap: 15px;
    flex-shrink: 0; }
  @media (max-width: 680px) {
    .task__datetime-wrapper {
      display: contents; } }

@media (max-width: 680px) {
  .task__group .task__ai-group {
    order: 1; }
  .task__group .task__checkbox-group {
    order: 2; }
  .task__group .task__row--column {
    order: 3; }

  .task__checkbox-group {
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
    gap: 2rem;
    margin-top: 0; }
    .task__checkbox-group .task__checkbox-label--offset {
      margin-left: 0;
      margin-top: 0; } }
@media (max-width: 680px) {
  form[action*="task-update"] .task__checkbox-group {
    margin-top: 1rem; } }
@media (max-width: 680px) {
  form[action*="task-create"] .task__datetime-wrapper .task__row {
    margin-bottom: 12px; } }
.lists__form-container {
  position: relative;
  max-width: 650px;
  margin: 40px auto 20px; }
  @media (max-width: 680px) {
    .lists__form-container {
      margin: auto;
      width: 100%;
      padding-top: 18px; } }
.lists__input--full-width {
  flex-grow: 1;
  display: flex;
  align-items: center;
  font-size: 16px;
  border: none; }
  .lists__input--full-width:focus {
    outline: none;
    box-shadow: none;
    border: none; }
.lists__action-icon--enlarged {
  width: 28px;
  height: 27px; }
.lists__text--bold {
  text-decoration: none;
  color: black; }

.auth {
  max-width: 500px;
  margin-top: 50px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  /*
   * Концепция: "Свечение и глубина".
   * Убираем текстуру, фокусируемся на сложном градиенте.
   * Радиальный градиент создает эффект свечения сверху,
   * а линейный градиент добавляет глубину и объем.
   */
  background: radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.6), transparent 40%), linear-gradient(170deg, #f0f0f5, #d8d8e0); }
  .auth__title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333; }
  .auth__subtitle {
    text-align: center;
    font-size: 16px;
    margin-top: -15px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.5; }
  .auth__group {
    margin-bottom: 20px; }
  .auth__input-wrapper {
    position: relative;
    display: flex;
    align-items: center; }
  .auth__input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s; }
    .auth__input:focus {
      border-color: #000;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
      outline: none; }
  .auth__eye-icon {
    position: absolute;
    right: 15px;
    cursor: pointer;
    width: 20px;
    height: 20px; }
  .auth__label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555; }
  .auth__error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 20px; }
  .auth__success {
    color: #27ae60;
    background-color: #e9f7ef;
    border: 1px solid #a3d9b8;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center; }
  .auth__submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #000;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s; }
    .auth__submit:hover {
      background-color: #333;
      transform: translateY(-2px); }
    .auth__submit--guest {
      background-color: #aaa; }
      .auth__submit--guest:hover {
        background-color: #888; }
  .auth__footer {
    text-align: center;
    margin-top: 20px; }
    .auth__footer--register {
      margin-top: 26px; }
    .auth__footer--guest {
      margin-top: 18px;
      margin-bottom: -12px; }
    .auth__footer--forgot-password {
      text-align: right;
      margin-top: 12px;
      margin-bottom: 30px; }
  .auth__link {
    color: #000;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: color 0.25s; }
    .auth__link:hover {
      color: #575757; }
  .auth__bottom-line {
    border-bottom: 1px solid black;
    padding-bottom: 10px; }
  @media (max-width: 680px) {
    .auth {
      margin: auto;
      width: 100%;
      max-width: 100%;
      padding: 20px; } }

.loader-ai {
  width: 38px;
  height: 38px;
  border-width: 5px; }

.actions-panel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 835px;
  height: 64px;
  z-index: 5;
  margin: 55px auto -15px;
  padding-bottom: 9px;
  max-width: 860px; }
  @media (max-width: 680px) {
    .actions-panel:not(.actions-panel--decreased) {
      flex-direction: column;
      width: 97%;
      height: auto;
      padding: 28px 0;
      margin-bottom: -15px; }
      .actions-panel:not(.actions-panel--decreased)::before {
        height: calc(100% + 10px);
        transform: perspective(100px) rotateX(4deg); }
      .actions-panel:not(.actions-panel--decreased) .actions-panel__separator {
        display: none; }
      .actions-panel:not(.actions-panel--decreased) .actions-panel__group {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: -10px; }
      .actions-panel:not(.actions-panel--decreased) .actions-panel__text {
        font-size: 18px; }
      .actions-panel:not(.actions-panel--decreased) .actions-panel__group:nth-child(1) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        margin-bottom: 6px; } }
  .actions-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Скругление верхних углов */
    border-radius: 18px 18px 0 0;
    transform: perspective(200px) rotateX(7deg);
    transform-origin: bottom;
    /* Вместо polygon — inset с round (учитывает радиусы) */
    clip-path: inset(0 round 18px 18px 0 0);
    /*
     * Концепция: "Полированный алюминий".
     * Очень светлый, почти белый фон, продолжающий тему металла.
     * Текстура сведена к минимуму, чтобы создать гладкую, отражающую поверхность.
     */
    background-color: #e8e8e8;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 70%), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.015) 0, rgba(0, 0, 0, 0.015) 1px, transparent 1px, transparent 6px), linear-gradient(160deg, #f2f2f2, #e8e8e8);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08), inset 0 1.2px 1px rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.05); }
  .actions-panel--decreased {
    width: 36%; }
    @media (max-width: 680px) {
      .actions-panel--decreased {
        width: calc(55% + 20px); } }
  .actions-panel--gradient-index::before {
    background: linear-gradient(143deg, #d0d8e0, white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
    border-top: 3px solid rgba(80, 80, 80, 0.2); }
  .actions-panel__group {
    display: flex;
    align-items: center; }
    .actions-panel__group .button:hover {
      transform: none; }
      .actions-panel__group .button:hover .header__icon {
        transform: scale(1.2); }
    .actions-panel__group .header__icon {
      transition: transform 0.3s; }
    .actions-panel__group .header__icon:not(.header__icon--right-edge) {
      margin-left: 15px;
      margin-right: -5px;
      width: 27px;
      height: 28px; }
    .actions-panel__group .actions-panel__buttons-row {
      border: none;
      box-shadow: none;
      text-decoration: none; }
  .actions-panel__text {
    display: flex;
    flex-grow: 1;
    margin-right: 10px;
    font-size: 22px;
    margin-left: 8px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7); }
    .actions-panel__text--shortened-right {
      margin-right: -4px; }
  .actions-panel__separator {
    font-size: 30px;
    color: rgba(0, 0, 0, 0.7);
    margin-right: 2px;
    font-weight: 300; }

/* --- Финальная версия _about.scss --- */
:root {
  --about-bg: #f4f7f9;
  --about-text: #333;
  --about-text-secondary: #777;
  --about-card-bg: #ffffff;
  --about-highlight: #000000;
  --about-purple: #2f034f; }

.about-container {
  background-color: var(--about-bg);
  color: var(--about-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  padding: 1rem; }
  @media (max-width: 680px) {
    .about-container {
      min-height: 100vh; } }

.about-hero {
  text-align: center;
  padding: 6rem 2rem;
  background-color: #f4f7f9;
  border-radius: 16px;
  width: 90%;
  max-width: 1400px;
  margin: 1rem auto 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9eef2; }
  .about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#bec6cf 0.5px, transparent 0.5px);
    background-size: 15px 15px;
    opacity: 0.8;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1; }
  .about-hero .blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    filter: blur(50px);
    opacity: 0.6;
    transition: opacity 0.6s ease; }
  .about-hero .blob {
    position: absolute;
    background: #d0d8e0;
    border-radius: 50%;
    transition: all 1s ease-in-out;
    animation: move-blob 30s infinite alternate; }
  .about-hero .blob:nth-child(1) {
    width: 350px;
    height: 300px;
    top: -50px;
    left: -100px;
    animation-duration: 35s; }
  .about-hero .blob:nth-child(2) {
    width: 250px;
    height: 280px;
    top: 50%;
    left: 20%;
    animation-delay: -15s; }
  .about-hero .blob:nth-child(3) {
    width: 280px;
    height: 280px;
    top: 20%;
    left: 70%;
    animation-delay: -5s;
    animation-duration: 25s; }
  .about-hero__content {
    position: relative;
    z-index: 3; }
  .about-hero__title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
    letter-spacing: -1.5px; }
    .about-hero__title .highlight-text {
      font-weight: 900;
      color: #000;
      transition: color 0.4s ease; }
  .about-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: black;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7; }
  .about-hero__button {
    background: transparent;
    border: 2px solid #363c42;
    color: black;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative; }
    .about-hero__button:hover {
      background: var(--about-purple);
      border-color: var(--about-purple);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(81, 10, 132, 0.2); }
  .about-hero:hover::before {
    background-image: radial-gradient(#98a0a8 1px, transparent 1px);
    background-size: 45px 45px;
    opacity: 1; }
  .about-hero:hover .blob-container {
    opacity: 1; }
  .about-hero:hover .blob {
    animation-duration: 10s; }
  .about-hero:hover .blob:nth-child(1) {
    background: var(--about-purple);
    transform: scale(1.2); }
    @media (max-width: 680px) {
      .about-hero:hover .blob:nth-child(1) {
        background: #af7bce; } }
  .about-hero:hover .blob:nth-child(2) {
    background: #a042b8; }
  .about-hero:hover .blob:nth-child(3) {
    animation-duration: 8s; }
  .about-hero:hover .highlight-text {
    color: var(--about-purple); }
    @media (max-width: 680px) {
      .about-hero:hover .highlight-text {
        color: #430c6d; } }

@keyframes move-blob {
  0% {
    transform: translate(0, 0) scale(1); }
  50% {
    transform: translate(80px, -100px) scale(1.3) rotate(180deg); }
  100% {
    transform: translate(-50px, 60px) scale(0.9) rotate(360deg); } }
@keyframes move-blob {
  0% {
    transform: translate(0, 0) scale(1); }
  50% {
    transform: translate(80px, -100px) scale(1.3) rotate(180deg); }
  100% {
    transform: translate(-50px, 60px) scale(0.9) rotate(360deg); } }
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 3rem; }
  @media (min-width: 768px) {
    .about-features {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1200px) {
    .about-features {
      grid-template-columns: repeat(4, 1fr); } }

.about-feature {
  background-color: var(--about-card-bg);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden; }
  .about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
  .about-feature__visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #e9eef2;
    border-bottom: 1px solid #dde4e9; }
  .about-feature__content {
    padding: 1.5rem;
    text-align: center; }
  .about-feature__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem; }
  .about-feature__text {
    color: var(--about-text-secondary); }

/* --- Адаптированные анимации --- */
/* 1. Списки */
.visual-lists-card {
  position: absolute;
  width: 150px;
  height: 90px;
  background: #d0d8e0;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-out; }

.about-feature:hover .card-1 {
  transform: rotate(-12deg) translate(-55%, -10%) scale(0.9); }

.about-feature:hover .card-2 {
  transform: rotate(-2deg) scale(1);
  z-index: 2; }

.about-feature:hover .card-3 {
  transform: rotate(8deg) translate(55%, -10%) scale(0.9); }

/* 2. ИИ (ИСПРАВЛЕНО) */
.visual-ai-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%; }

.visual-ai-text {
  padding: 0.8rem;
  border-radius: 6px;
  transition: all 0.5s ease-out;
  font-size: 0.9rem;
  background: #d0d8e0;
  color: black;
  flex-grow: 1;
  text-align: center;
  white-space: nowrap; }

.visual-ai-arrow {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: all 0.3s ease-out; }

.visual-ai-task {
  display: flex;
  align-items: center;
  transition: all 0.5s ease-out;
  font-size: 0.9rem;
  padding: 0.8rem;
  border-radius: 6px; }

.ai-task-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--about-highlight);
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0; }

.ai-task-checkbox::after {
  content: '✓';
  color: var(--about-highlight);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-out; }

.ai-task-text {
  position: relative;
  padding-bottom: 3px; }

.ai-task-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--about-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-out; }

.about-feature:hover .visual-ai-text {
  transform: scale(0.8);
  opacity: 0.5; }

.about-feature:hover .visual-ai-arrow {
  transform: scale(1.5); }

.about-feature:hover .visual-ai-task {
  transform: scale(1.1); }

.about-feature:hover .ai-task-checkbox::after {
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 0.2s; }

.about-feature:hover .ai-task-text::after {
  transform: scaleX(1);
  transition-delay: 0.2s; }

/* 3. Голос (с переливом) */
.visual-voice-wave-container {
  display: flex;
  align-items: center;
  height: 40px; }

.wv-bar {
  width: 4px;
  height: 8px;
  background-color: var(--about-highlight);
  border-radius: 3px;
  margin: 0 2px; }

.about-feature:hover .wv-bar {
  animation: wv-animate 1.0s infinite ease-in-out; }

@keyframes wv-animate {
  0%, 100% {
    transform: scaleY(1);
    background-color: var(--about-highlight); }
  50% {
    transform: scaleY(5);
    background-color: var(--about-purple); } }
.about-feature:hover .wv-bar:nth-child(1) {
  animation-delay: 0.1s; }

.about-feature:hover .wv-bar:nth-child(2) {
  animation-delay: 0.2s; }

.about-feature:hover .wv-bar:nth-child(3) {
  animation-delay: 0.3s; }

.about-feature:hover .wv-bar:nth-child(4) {
  animation-delay: 0.4s; }

.about-feature:hover .wv-bar:nth-child(5) {
  animation-delay: 0.5s; }

.about-feature:hover .wv-bar:nth-child(6) {
  animation-delay: 0.6s; }

.about-feature:hover .wv-bar:nth-child(7) {
  animation-delay: 0.7s; }

.about-feature:hover .wv-bar:nth-child(8) {
  animation-delay: 0.8s; }

.about-feature:hover .wv-bar:nth-child(9) {
  animation-delay: 0.9s; }

.about-feature:hover .wv-bar:nth-child(10) {
  animation-delay: 1.0s; }

.about-feature:hover .wv-bar:nth-child(11) {
  animation-delay: 1.1s; }

.about-feature:hover .wv-bar:nth-child(12) {
  animation-delay: 1.2s; }

.about-feature:hover .wv-bar:nth-child(13) {
  animation-delay: 1.3s; }

.about-feature:hover .wv-bar:nth-child(14) {
  animation-delay: 1.4s; }

.about-feature:hover .wv-bar:nth-child(15) {
  animation-delay: 1.5s; }

/* 4. Чек-листы (Скорость 2x) */
.visual-checklist {
  background: #d0d8e0;
  padding: 1rem;
  border-radius: 12px;
  width: 220px;
  font-size: 0.9rem; }

.check-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease; }

.check-item span {
  width: 18px;
  height: 18px;
  border: 2px solid var(--about-highlight);
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0; }

.check-item.done span::after {
  content: '✓';
  color: var(--about-highlight);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease-out; }

.about-feature:hover .check-item {
  transform: translateX(-10px); }

.about-feature:hover .check-item.done {
  transform: translateX(0);
  text-decoration: line-through;
  color: var(--about-text-secondary);
  transition-delay: 0.15s; }

.about-feature:hover .check-item.done span::after {
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 0.25s; }

/* 5. Фильтры */
.visual-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 25px);
  gap: 10px; }

.dot {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #d0d8e0;
  transition: all 0.5s ease; }

.about-feature:hover .dot {
  opacity: 0.2;
  transform: scale(0.8); }

.about-feature:hover .dot.urgent,
.about-feature:hover .dot.important {
  opacity: 1;
  transform: scale(1.1); }

.dot.urgent {
  background: var(--about-highlight); }

.dot.important {
  background: #ffffff;
  border: 1px solid #d0d8e0; }

.about-feature:hover .dot.important {
  background: var(--about-purple);
  border-color: var(--about-purple); }

/* 6. Уведомления (Скорость ~1.3x) */
.visual-notification-bell {
  font-size: 3rem;
  transition: transform 0.5s ease;
  z-index: 2; }

.about-feature:hover .visual-notification-bell {
  animation: ring 1.05s ease-in-out; }

@keyframes ring {
  0%, 100% {
    transform: rotate(0); }
  10%, 30%, 50% {
    transform: rotate(-15deg); }
  20%, 40% {
    transform: rotate(15deg); } }
.visual-notification-card {
  position: absolute;
  background: var(--about-card-bg);
  padding: 0.8rem;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: all 0.28s ease-out 0.21s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  z-index: 3; }

.about-feature:hover .visual-notification-card {
  opacity: 1;
  transform: translateY(-30px) scale(1); }

/* 7. Гостевой режим (НОВАЯ АНИМАЦИЯ) */
.visual-guest-toggle {
  display: flex;
  background: #d0d8e0;
  border-radius: 12px;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative; }

.toggle-option {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  transition: color 0.4s ease;
  z-index: 1; }

.toggle-option:first-child {
  color: white; }

.toggle-option:last-child {
  color: var(--about-text); }

.visual-guest-toggle::after {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: calc(50% - 0.5rem);
  height: calc(100% - 1rem);
  background: var(--about-highlight);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }

.about-feature:hover .visual-guest-toggle::after {
  left: 50%;
  background: var(--about-purple); }

.about-feature:hover .toggle-option:first-child {
  color: var(--about-text); }

.about-feature:hover .toggle-option:last-child {
  color: white; }

/* 8. Интуитивный интерфейс (Дышащее созвездие) */
.visual--constellation {
  overflow: hidden; }

.constellation-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  width: 90%;
  height: 90%;
  gap: 5%;
  align-items: center;
  justify-items: center; }

.star {
  width: 8px;
  height: 8px;
  background: var(--about-highlight);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5); }

.about-feature:hover .star {
  animation: twinkle 1.4s infinite ease-in-out; }

.about-feature:hover .star:nth-child(5n + 1),
.about-feature:hover .star:nth-child(5n + 2) {
  animation-name: twinkle-purple; }

@keyframes twinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5); }
  50% {
    opacity: 1;
    transform: scale(1.2);
    background-color: var(--about-highlight); } }
@keyframes twinkle-purple {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5); }
  50% {
    opacity: 1;
    transform: scale(1.2);
    background-color: var(--about-purple); } }
.about-feature:hover .star:nth-child(7n + 1) {
  animation-delay: 0.035s; }

.about-feature:hover .star:nth-child(7n + 2) {
  animation-delay: 0.28s; }

.about-feature:hover .star:nth-child(7n + 3) {
  animation-delay: 0.525s; }

.about-feature:hover .star:nth-child(7n + 4) {
  animation-delay: 0.14s; }

.about-feature:hover .star:nth-child(7n + 5) {
  animation-delay: 0.7s; }

.about-feature:hover .star:nth-child(7n + 6) {
  animation-delay: 0.42s; }

.about-feature:hover .star:nth-child(11n + 1) {
  animation-delay: 0.63s; }

.about-feature:hover .star:nth-child(11n + 3) {
  animation-delay: 0.07s; }

.about-feature:hover .star:nth-child(11n + 5) {
  animation-delay: 0.455s; }

.about-feature:hover .star:nth-child(11n + 7) {
  animation-delay: 0.21s; }

.about-feature:hover .star:nth-child(11n + 9) {
  animation-delay: 0.77s; }

/* --- Секция "Как это работает" --- */
.about-how-it-works {
  background-color: var(--about-card-bg);
  border-radius: 16px;
  padding: 4rem 2rem;
  width: 90%;
  max-width: 1400px;
  margin: 3rem auto;
  text-align: center;
  overflow: hidden; }

.about-section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--about-text); }

.how-it-works-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto; }
  .how-it-works-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0; }
  @media (max-width: 768px) {
    .how-it-works-timeline {
      flex-direction: column;
      align-items: center;
      gap: 3rem; }
      .how-it-works-timeline::before {
        display: none; } }

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 280px;
  position: relative;
  z-index: 1; }

.timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--about-highlight);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 4px solid var(--about-card-bg); }
  .timeline-icon svg {
    width: 28px;
    height: 28px;
    stroke: white; }

.timeline-content .timeline-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--about-text); }
.timeline-content p {
  color: var(--about-text-secondary);
  font-size: 1rem;
  line-height: 1.5; }

.timeline-item:hover .timeline-icon {
  background-color: var(--about-purple);
  transform: scale(1.1); }

/* --- Кнопка "Назад" --- */
.back-to-home-button {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease; }
  .back-to-home-button img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease; }
  .back-to-home-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: black; }
    .back-to-home-button:hover img {
      filter: brightness(0) invert(1); }

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; }

.pagination__link {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s, color 0.3s; }
  .pagination__link:hover {
    background-color: #f0f0f0; }
  .pagination__link:not(.pagination__link--active):hover {
    background-color: #c7c7c7; }

.pagination__link--active {
  background-color: black;
  color: #fff;
  border-color: #333; }
  .pagination__link--active:hover {
    background-color: #333;
    color: #fff; }

.pagination__text {
  padding: 8px 12px;
  margin: 0 4px;
  color: #999; }

.session-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  background-color: transparent;
  padding: 10px 16px;
  border-radius: 16px;
  transition: background-color;
  visibility: hidden;
  opacity: 0; }
  @media (max-width: 680px) {
    .session-toggle {
      position: absolute;
      top: 10px;
      right: 10px;
      padding: 10px;
      border-radius: 16px;
      background-color: rgba(240, 240, 240, 0.7);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); } }
  .session-toggle:hover {
    background-color: rgba(212, 212, 212, 0.2); }
  .session-toggle__title {
    font-size: 22px;
    font-weight: bold;
    color: black;
    padding-right: 15px;
    border-right: 2px solid rgba(0, 0, 0, 0.4); }
    @media (max-width: 680px) {
      .session-toggle__title {
        font-size: 19px; } }
  .session-toggle__button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s; }
    .session-toggle__button:hover {
      transform: scale(1.1); }
  .session-toggle__icon {
    display: block;
    width: 32px;
    height: 32px; }

.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000; }
  .custom-alert__content {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 90%;
    max-width: 400px;
    transition: border-color 0.3s ease; }
  .custom-alert__message {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333; }
  .custom-alert__button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease; }
    .custom-alert__button:hover {
      background-color: #2c2c2c; }
  .custom-alert.custom-alert--success .custom-alert__content {
    border-top-color: #212e2a; }
  .custom-alert.custom-alert--error .custom-alert__content {
    border-top-color: #382222; }

.task__input-container {
  position: relative;
  flex-grow: 1; }
  @media (max-width: 680px) {
    .task__input-container {
      width: 100%; } }

/* Правило для однострочных полей (например, "Название") */
.task__input-container .task__input:not(textarea) {
  padding-right: 50px; }

/* Правило для многострочных полей (компенсируем ширину скроллбара) */
.task__input-container textarea.task__input {
  padding-right: 45px; }

.voice-input-btn {
  position: absolute;
  right: 18px;
  top: 8px;
  transform: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center; }
  .voice-input-btn img {
    width: 24px;
    height: 24px;
    margin: 0;
    /* Убираем отступ, унаследованный от .form__img-custom */ }

/* Смещаем кнопку для многострочных полей */
.task__input-container textarea + .voice-input-btn {
  top: 15px;
  transform: none; }

/* Возвращаем эффект увеличения при наведении для кнопок у многострочных полей */
.task__input-container textarea + .voice-input-btn:hover {
  transform: scale(1.2); }

.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.startRange,
.flatpickr-calendar .flatpickr-day.endRange,
.flatpickr-calendar .flatpickr-day.selected.inRange,
.flatpickr-calendar .flatpickr-day.startRange.inRange,
.flatpickr-calendar .flatpickr-day.endRange.inRange,
.flatpickr-calendar .flatpickr-day.selected:focus,
.flatpickr-calendar .flatpickr-day.startRange:focus,
.flatpickr-calendar .flatpickr-day.endRange:focus,
.flatpickr-calendar .flatpickr-day.selected:hover,
.flatpickr-calendar .flatpickr-day.startRange:hover,
.flatpickr-calendar .flatpickr-day.endRange:hover,
.flatpickr-calendar .flatpickr-day.selected.prevMonthDay,
.flatpickr-calendar .flatpickr-day.startRange.prevMonthDay,
.flatpickr-calendar .flatpickr-day.endRange.prevMonthDay,
.flatpickr-calendar .flatpickr-day.selected.nextMonthDay,
.flatpickr-calendar .flatpickr-day.startRange.nextMonthDay,
.flatpickr-calendar .flatpickr-day.endRange.nextMonthDay {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #fff !important; }
.flatpickr-calendar .flatpickr-day.inRange,
.flatpickr-calendar .flatpickr-day.prevMonthDay.inRange,
.flatpickr-calendar .flatpickr-day.nextMonthDay.inRange,
.flatpickr-calendar .flatpickr-day.today.inRange,
.flatpickr-calendar .flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-calendar .flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-calendar .flatpickr-day:hover,
.flatpickr-calendar .flatpickr-day.prevMonthDay:hover,
.flatpickr-calendar .flatpickr-day.nextMonthDay:hover,
.flatpickr-calendar .flatpickr-day:focus,
.flatpickr-calendar .flatpickr-day.prevMonthDay:focus,
.flatpickr-calendar .flatpickr-day.nextMonthDay:focus {
  background: #696969 !important;
  border-color: #696969 !important;
  color: #fff !important; }
.flatpickr-calendar .flatpickr-day.today:hover,
.flatpickr-calendar .flatpickr-day.today:focus {
  background: #696969 !important;
  border-color: #696969 !important;
  color: #fff !important; }
.flatpickr-calendar .flatpickr-monthDropdown-months:hover {
  background: #f0f0f0 !important; }

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* Белый фон */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  /* Скрыт по умолчанию */
  visibility: hidden;
  /* Скрыт по умолчанию */
  transition: opacity 0.5s, visibility 0.5s;
  /* Плавное исчезновение */ }

.loader {
  border: 8px solid #f3f3f3;
  /* Светло-серый */
  border-top: 8px solid #333333;
  /* Темно-серый */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.5s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
#loader-wrapper.is-visible {
  opacity: 1;
  visibility: visible; }

#loader-wrapper.completely-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Чтобы не блокировать взаимодействие с элементами под загрузчиком */ }

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; }

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