<style>
  /* Основной стиль для шапки */
  .header-logo {
    flex: 0 0 auto;
    max-height: 150px;
  }

  .header-logo img {
    max-height: 150px;
    width: auto;
  }

  .header-text {

    flex: 1 1 100%; /* чтобы занимало всю ширину на мобильных */
    text-align: center;
  }

  /* Общие стили */
  body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;

  /* Новый крутой фон с градиентом и легкими блёстками */
  background: 
    linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%), /* мягкий градиент */
    repeating-conic-gradient(
      rgba(255, 255, 255, 0.05) 0deg 30deg,
      transparent 30deg 60deg
    ); /* легкий паттерн для объема */
  background-blend-mode: overlay;
  color: #333;
  line-height: 1.6;
}

  /* Можно добавить плавное изменение фона при прокрутке или взаимодействии */
  a {
    text-decoration: none;
    color: inherit;
  }

  /* Шапка */
  header {
    background: linear-gradient(135deg, #007acc, #005f99);
    color: #fff;
    /*padding: 40px 20px;*/
    text-align: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
/*    padding: 20px;*/
    flex-wrap: wrap; /* чтоб элементы переносились на мобильных */
  }

  header h1 {
    font-size: 2.6em;
    margin-bottom: 10px;
    color: #fd8e03;
  /*    color: #ffe600;*/
    text-shadow:
      1px 1px 0 #000,
      -1px 1px 0 #fff,
      1px -1px 0 #fff,
      -1px -1px 0 #fff;
    margin: 0 0 20px 0;
  }

  header p {
/*    max-width: 700px;*/
/*    margin: 0 auto;*/
    font-size: 1.2em;
  }

  .HeaderTop {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    background-color: #039be5; /* голубой цвет */
    border-radius: 10px; /* добавляем закругление углов */
  }

  /* Основные разделы */
  section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 4px solid #fd8e03;
  }

  h2 {
    color: #007acc;
    font-size: 1.8em;
    margin-bottom: 20px;
    position: relative;
  }

  h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #007acc;
    margin-top: 8px;
  }

  /* Списки */
  ul {
    padding-left: 20px;
  }

  li {
    margin-bottom: 10px;
  }

/* Результат */
#result {
  margin-top: 20px;
  font-size: 14px;
/*  font-family: Arial, sans-serif;*/
  color: #ffa500;
  text-align: center;
}
  
  /* Стиль формы заказов */
  .order-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .order-form label {
    font-weight: 600;
    width: 100%;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="number"],
  input[type="date"],
  select,
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1em;
    transition: border-color 0.3s;
  }

  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="email"]:focus,
  input[type="number"]:focus,
  input[type="date"]:focus,
  select:focus,
  textarea:focus {
    border-color: #007acc;
    outline: none;
  }

  button {
    padding: 14px 30px;
    background-color: #007acc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s;
  }

  button:hover {
    background-color: #005f99;
  }

  /* Подвал */
  footer {
    background-color: #222;
    color: #eee;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
  }

  footer p {
    margin: 10px 0;
  }

/* Адаптация на маленьких экранах */
  @media (max-width: 768px) {
  header {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
    .header-text {
      margin-left: 0;
      margin-top: 20px; /* небольшой отступ сверху */
      text-align: center;
    }
  }

  #transactionsTable td:first-child {
    white-space: nowrap;
  }

   #transactionsTable td:nth-child(4) {
    white-space: nowrap;
  }

   #transactionsTable th:nth-child(5) {
    min-width: 100px;
    max-width: 100px;
    width: 100px;
  }

/* Общие стили для контейнера */
  .maps-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

/* Все карты — одинаковая гибкая ширина */
  .map-item {
    flex: 1;
    height: 400px;
  }

/* Встроенная карта, например iframe или встроенный блок (карту Google Maps) */
  .map-iframe {
    width: 100%;
    height: 400px; /* или больше/меньше, в зависимости от дизайна */
    border: none;
  }

/* Медиазапрос для устройств с меньшей шириной, например, до 768px */
@media (max-width: 768px) {
    .maps-container {
      flex-direction: column; /* Вертикальное расположение карт */
    }
    .map-item {
      flex-direction: column; /* Вертикальное расположение карт */
    }
    .map-iframe {
      height: 250px; /* уменьшите высоту для мобильных */
    }
    h2 {
      font-size: 1.0em;
    }
}

#orderFormContainer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

#orderFormContainer.show {
  max-height: 1000px; /* достаточно большое значение, чтобы поместился весь контент */
}

#fixedOrderLink {
  position: fixed;
  right: 20px;
  top: 20%;
  transform: translateY(-50%);
  background-color: #ff6600;
  color: #fff;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 1000;
  transition: background-color 0.3s, transform 0.2s;
}

#fixedOrderLink:hover {
  background-color: #ff3300;
  transform: scale(1.05);
}

#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  background-color: #3498db;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  display: none; /* скрыта по умолчанию */
  z-index: 1000;
}

th {
  position: relative;
  vertical-align: bottom;
  text-align: center;
}

th input.column-filter {
  width: 100%;
  box-sizing: border-box;
}

#transactionsTable thead th {
  text-align: center;
}


#transactionsTable {
  display: none;
}

.dataTables_paginate {
  display: none !important;
}

.dataTables_length {
  display: none !important;
}
</style>