/* СТИЛІ ДЛЯ ФОРМИ ЗВОРОТНОГО ЗВ'ЯЗКУ (для верхньої форми) */
#callback-form-top {
  display: none;
  margin-top: 20px;
  background: #ffffff;
  padding: 25px;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

#callback-form-top input[type="text"],
#callback-form-top input[type="email"],
#callback-form-top textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 16px;
}

#callback-form-top textarea {
  height: 120px;
  resize: vertical;
}

#callback-form-top label {
  font-weight: bold;
  display: block;
  margin-top: 15px;
}

#callback-form-top button[type="submit"] {
  background-color: #ff930b; /* колір кнопки */
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

#callback-form-top button[type="submit"]:hover {
  background-color: #101161; 
}

#form-status-top {
  margin-top: 20px;
margin-left: 140px; /* відстань від кнопки праворуч */
  color: green;
  font-weight: bold;
}

#callback-form-top .thank-you-message {
  margin-top: 20px;
margin-left: 15px; /* відстань від кнопки праворуч */
  text-align: center;
  display: block;
  font-size: 16px;
  font-weight: bold;
}

/* СТИЛІ ДЛЯ ФОРМИ ЗВОРОТНОГО ЗВ'ЯЗКУ (для нижньої форми) */
#callback-form-bottom {
  display: none;
  margin-top: 20px;
  background: #ffffff;
  padding: 25px;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

#callback-form-bottom input[type="text"],
#callback-form-bottom input[type="email"],
#callback-form-bottom textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 16px;
}

#callback-form-bottom textarea {
  height: 120px;
  resize: vertical;
}

#callback-form-bottom label {
  font-weight: bold;
  display: block;
  margin-top: 15px;
}

#callback-form-bottom button[type="submit"] {
  background-color: #ff930b; /* колір кнопки */
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

#callback-form-bottom button[type="submit"]:hover {
  background-color: #101161; 
}

#form-status-bottom {
  margin-top: 15px;
  color: green;
  font-weight: bold;
}

#callback-form-bottom .thank-you-message {
  margin-top: 20px;
  text-align: center;
  display: block;
  font-size: 16px;
  font-weight: bold;
}

/* Стилі для кнопок */
.callback {
  display: inline-block;
  background-color: #101161; /* колір кнопки */
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.callback:hover {
  background-color: #101161;
}

.callback i {
  font-size: 24px;
}

.callback span {
  margin-left: 10px;
}
