/* Main wrapper */
.mphb_sc_checkout-wrapper {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  /*background: #fff;*/
  border-radius: 12px;
  /*box-shadow: 0 10px 30px rgba(0,0,0,0.08);*/
}

/* Section boxes */
.mphb-checkout-section {
  background: #f9fafc;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}

/* Section titles */
.mphb-checkout-section h3,
.mphb-checkout-section h4 {
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

/* Booking dates */
.mphb-check-in-date,
.mphb-check-out-date {
  background: #eef4ff;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Room box */
.mphb-room-details {
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #eee;
  margin-top: 15px;
}

/* Inputs */
.mphb_sc_checkout-wrapper input,
.mphb_sc_checkout-wrapper select,
.mphb_sc_checkout-wrapper textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* Input focus */
.mphb_sc_checkout-wrapper input:focus,
.mphb_sc_checkout-wrapper select:focus {
  border-color: #0073aa;
  outline: none;
}

/* Labels */
.mphb_sc_checkout-wrapper label {
  font-weight: 500;
}

/* Price table */
.mphb-price-breakdown {
  width: 100%;
  border-collapse: collapse;
}

.mphb-price-breakdown td,
.mphb-price-breakdown th {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

/* Total highlight */
.mphb-price-breakdown-total {
  background: #f1f5ff;
  font-weight: bold;
}

/* Total price big */
.mphb-total-price {
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  margin-top: 20px;
}

/* Error message */
.mphb-errors-wrapper {
  background: #ffecec;
  color: #d8000c;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Button */
.mphb_sc_checkout-submit-wrapper input {
  width: 100%;
  background: #d69f5a;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* Button hover */
.mphb_sc_checkout-submit-wrapper input:hover {
  background: #0a1b2f;
}

/* Login message */
.mphb-login-form-wrap {
  background: #f0f7ff;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
}


/* MotoPress required star fix */
.mphb_sc_checkout-form abbr,
.mphb_checkout-form abbr,
abbr[title="required"] {
    color: red !important;
    text-decoration: none !important;
    border-bottom: 0 !important;
    border: 0 !important;
    cursor: default !important;
}