.search-bar {
    margin: 16px;
    text-align: center;
}
.search-bar input {
    padding: 8px;
    width: 80%;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.svg-icon {
  width: 30px;
  height: 30px;
  fill: #fff; /* цвет заливки SVG */
  margin-right: 3%;
}

.svg-path {
  stroke: #ff0000; /* цвет обводки */
  stroke-width: 2; /* толщина обводки */
}
a {
  text-decoration: none;
}
.container {
  place-content: center; 
}
/* CSS */
#scrollToTopBtn {
    position: fixed;
    bottom: 10%;
    right: 5%;
    display: none;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 50%; /* Закругляем кнопку */
    padding: 15px;
    cursor: pointer;
    z-index: 1000; /* Выводим кнопку на передний план */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 18px;
}

#scrollToTopBtn:hover {
    background-color: #000000;
    transform: scale(1.1); /* Увеличение кнопки при наведении */
}

/* Общее оформление модального окна */
.modalq {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Фон-затемнение для модального окна */
/* Общий стиль для модального окна */
.modal {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
  z-index: 1000; /* Выводим окно на передний план */
}

/* Контент модального окна */
.modal-content {
  position: relative;  
  background-color: #000000;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Лёгкая тень */
  width: 90%;
  max-width: 600px;
  box-sizing: border-box;
  text-align: center;
}
.modal-icon {
    width: 100px; /* Устанавливаем ширину */
    height: auto; /* Сохраняем пропорции */
    border: 2px solid #ccc; /* Добавляем рамку */
    border-radius: 10px; /* Закругляем углы */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Добавляем тень */
    margin: 10px auto; /* Отступы */
    display: block; /* Блок для центрирования */
}
/* Кнопка закрытия */
.close {
    position: absolute;
    top: 10px; /* Расположение сверху */
    right: 10px; /* Расположение справа */
    width: 30px;
    height: 30px;
    background-color: #ff4d4d; /* Яркий красный фон */
    border: none;
    border-radius: 50%; /* Закругленные края для круглой кнопки */
    color: white; /* Цвет крестика */
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Тень для объема */
    transition: all 0.3s ease; /* Плавные эффекты при наведении */
}

.close:hover {
    background-color: #ff1a1a; /* Более яркий красный при наведении */
    transform: scale(1.1); /* Легкое увеличение */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Усиленная тень */
}

.close:active {
    transform: scale(0.9); /* Легкое уменьшение при нажатии */
    background-color: #e60000; /* Цвет при нажатии */
}










