/* === Основний блок форми === */
.delivery-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ddd;
  border-radius: 8px;
  box-sizing: border-box;
}
.delivery-section h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}
.delivery-section p {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 16px;
}

/* === Повідомлення === */
.message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* === Форма === */
.delivery-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.delivery-form input,
.delivery-form select,
.delivery-form textarea {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 75%;
  box-sizing: border-box;
}
.delivery-form textarea {
  min-height: 120px;
  resize: vertical;
}
/* Кнопка — стилізується через buttons.css (btn-primary) */
.delivery-form button {
  align-self: center;
}
/* === Посилання назад === */
.back-link {
  display: block;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}
.back-link:hover {
  text-decoration: underline;
}
/* === Адаптивність для мобільних === */
@media (max-width: 760px) {
  .delivery-section {
    padding: 20px;
    margin: 20px 10px;
  }
  .delivery-section h2 {
    font-size: 20px;
  }
  .delivery-form input,
  .delivery-form select,
  .delivery-form textarea {
    font-size: 15px;
    padding: 10px 12px;
    width: 100%;
  }
  .delivery-form {
    align-items: stretch;
  }
  .delivery-form button {
    width: 100%;
    text-align: center;
  }
}