/* Table Reservation Reserver - 前端样式 */

.trr-form {
  max-width: 480px;
  margin: 20px auto;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fafafa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  line-height: 1.6;
}

.trr-form div {
  margin-bottom: 12px;
}

.trr-form label {
  display: inline-block;
  width: 130px;
  font-weight: 600;
  color: #333;
}

.trr-form input,
.trr-form select {
  width: calc(100% - 140px);
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background-color: #fff;
  transition: border-color 0.2s;
}

.trr-form input:focus,
.trr-form select:focus {
  outline: none;
  border-color: #2271b1;
}

.trr-form button {
  padding: 8px 14px;
  margin-right: 6px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.trr-form .button-primary {
  background-color: #2271b1;
  color: #fff;
  border: none;
}

.trr-form .button-primary:hover {
  background-color: #1d5a8b;
}

.trr-form small {
  margin-left: 8px;
  color: #555;
  font-size: 13px;
}

#trr-msg {
  text-align: center;
  font-weight: 600;
}
