.manibook-form {
  max-width: 450px;
  margin: 30px auto;
  padding: 25px 30px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgb(149 157 165 / 0.2);
  border-radius: 12px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.manibook-form label {
  color: #111 !important;
  display: block;
  margin-bottom: 6px;
}


.manibook-form input.price-input {
  background-color: #f9fafb; /* خاکستری خیلی روشن */
  color: #1f2937; /* خاکستری تیره */
  border: 2px solid #2563eb; /* آبی */
  font-weight: 700;
  font-size: 16px;
  padding: 12px 15px;
  border-radius: 10px;
  width: 150px;
  text-align: center;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.manibook-form input.price-input:focus {
  border-color: #1d4ed8; /* آبی پررنگ‌تر */
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
  outline: none;
}



.manibook-form input[type="text"],
.manibook-form input[type="number"],
.manibook-form textarea {
  background-color: #ffffff !important; /* پس‌زمینه سفید */
  color: #222222 !important;
  border: 1.5px solid #d1d5db !important;
  padding: 10px 12px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  margin-bottom: 18px !important;
  width: 100% !important;
  transition: border-color 0.3s ease !important;
}

.manibook-form input[type="text"]:focus,
.manibook-form input[type="number"]:focus,
.manibook-form textarea:focus {
  background-color: #ffffff !important; /* پس‌زمینه سفید هنگام فوکوس */
  border-color: #2563eb !important;
  box-shadow: 0 0 5px rgba(37, 99, 235, 0.4) !important;
  outline: none !important;
}


.manibook-form textarea {
  resize: vertical;
  min-height: 70px;
}

.manibook-form button {
  width: 100%;
  background-color: #2563eb;
  color: white;
  font-weight: 700;
  padding: 13px 0;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.manibook-form button:hover {
  background-color: #1d4ed8;
}

@media (max-width: 480px) {
  .manibook-form {
    margin: 15px;
    padding: 20px;
  }
}
