/* Modern alert styles */
.krpp-alert {
  margin: 24px auto 16px auto;
  padding: 18px 40px 18px 18px;
  border-radius: 8px;
  background: #eaf6fb;
  color: #15597c;
  border: 1.5px solid #b6e0f7;
  position: relative;
  font-size: 1.08rem;
  max-width: 700px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.krpp-alert-info {
  background: #eaf6fb;
  color: #15597c;
  border-color: #b6e0f7;
}
.krpp-alert-close {
  position: absolute;
  top: 12px;
  right: 18px;
  color: #15597c;
  font-size: 1.4em;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: color 0.2s;
}
.krpp-alert-close:hover {
  color: #e74c3c;
}

/* Responsive alert */
@media (max-width: 600px) {
  .krpp-alert {
    font-size: 1em;
    padding: 14px 32px 14px 14px;
    max-width: 98vw;
  }
  .krpp-alert-close {
    top: 8px;
    right: 12px;
  }
}

/* Fix WooCommerce checkout label alignment for email/phone */
.woocommerce-billing-fields label {
  display: block !important;
  margin-bottom: 6px !important;
  font-weight: 500 !important;
  font-size: 1em !important;
}

.woocommerce-billing-fields .form-row-wide input[type="email"],
.woocommerce-billing-fields .form-row-wide input[type="tel"],
.woocommerce-billing-fields .form-row-wide input[type="text"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 1em;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #d1d5db;
  margin-bottom: 12px;
}

/* Force all checkout fields to stack vertically */
.woocommerce-billing-fields .form-row.form-row-wide,
.woocommerce-billing-fields .form-row-wide {
  width: 100% !important;
  float: none !important;
  clear: both !important;
  display: block !important;
  margin-right: 0 !important;
}

.woocommerce-billing-fields .form-row label {
  width: 100% !important;
  text-align: left !important;
  margin-bottom: 6px !important;
  display: block !important;
} 