#geo-search {
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Поле поиска */
.geo-search-input {
  margin-bottom: 15px;
}
#geo-search input {
  width: 65%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-right: 6px;
}

/* Кнопки */
.big-button, 
#geo-search button {
  display: inline-block;
  padding: 10px 18px;
  font-size: 15px;
  border-radius: 6px;
  background: #0073aa;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.big-button:hover, 
#geo-search button:hover {
  background: #005177;
}

/* Кнопки Telegram/VK в одну линию */
.geo-search-bots {
  margin: 10px 0 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Варианты выбора */
.geo-option {
  display: block;             
  text-align: left;          
  margin: 5px 0;
  padding: 6px 12px;
  background: #0073aa;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}
.geo-option:hover { background: #005177; }

/* Карточки хостов */
.host-card {
  display: flex;                  /* фото справа */
  justify-content: space-between;
  align-items: flex-start;        /* выравнивание текста по верху */
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 5px;
  margin: 12px 0;
  background: #fafafa;            /* фон по умолчанию, потом меняем через JS */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Контейнер текста */
.host-info {
  text-align: left;
  line-height: 1.5em;
  flex: 1 1 auto;                 /* занимает всю ширину кроме фото */
  margin-right: 5px;
}

/* Фото справа */
.host-photo {
  flex-shrink: 0;                  /* не сжимается */
  width: 120px;
  height: 120px;                   /* фиксированная высота */
  border-radius: 6px;
  object-fit: cover;               /* обрезает изображение по размеру */
}
