/* order.css */

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff8f5;
  color: #5d4037;
  padding: 2rem;
  max-width: 600px;
  margin: auto;
}

h1 {
  color: #c2185b;
  font-family: 'Dancing Script', cursive;
  text-align: center;
  margin-bottom: 1.5rem;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-link {
  background-color: #5d4037;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-size: 0.95rem;
}

.btn-link:hover {
  background-color: #3e2d26;
}

form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

button {
  background-color: #c2185b;
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 5px;
  margin-top: 1.5rem;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #a3154d;
}

.success {
  color: green;
  font-weight: bold;
  text-align: center;
  margin-top: 1.5rem;
}

