/* Import Libre Baskerville from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');

/* Fluent Form Container Styles */
.fluentform {
  font-family: 'Libre Baskerville', serif !important;
  font-size: 16px !important;
  padding: 30px !important;
  background-color: #EEEEEE !important;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* soft fade shadow */
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Form Fields */
.fluentform .ff-el-form-control,
.fluentform select,
.fluentform textarea {
  font-family: 'Libre Baskerville', serif !important;
  font-size: 16px !important;
  margin-bottom: 20px !important;
  border-radius: 30px !important;
  padding: 12px 16px;
  background-color: #ffffff !important;
  border: 1px solid #ccc;
}

/* Submit Button */
.fluentform .ff-btn-submit {
  font-family: 'Libre Baskerville', serif !important;
  font-size: 16px !important;
  background-color: #000000;
  color: #ffffff;
  border-radius: 30px;
  padding: 12px 24px;
  border: none;
  transition: background-color 0.3s ease;
}

/* Submit Button Hover */
.fluentform .ff-btn-submit:hover {
  background-color: #333333;
}

/* HLWrap – Tint comparison table styling */
#tint-table .elementor-widget-data-table table {
  border-collapse: collapse;
  width: 100%;
  font-family: 'Libre Baskerville', serif;
}

/* Header cells */
#tint-table .elementor-widget-data-table thead th {
  background-color: #A3A3A3;         /* header grey */
  color: #000000;
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  font-weight: 600;
  border-color: #A3A3A3;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Rounded top corners on header row */
#tint-table .elementor-widget-data-table thead th:first-child {
  border-top-left-radius: 15px;
}
#tint-table .elementor-widget-data-table thead th:last-child {
  border-top-right-radius: 15px;
}

/* Body cells (content rows) */
#tint-table .elementor-widget-data-table tbody td {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  color: #000000;
  border-color: #e0e0e0;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Odd row background */
#tint-table .elementor-widget-data-table tbody tr:nth-child(odd) td {
  background-color: #F7F7F7;
}

/* Even row background */
#tint-table .elementor-widget-data-table tbody tr:nth-child(even) td {
  background-color: #FFFFFF;
}

/* Make sure links in table stay black */
#tint-table .elementor-widget-data-table a {
  color: #000000;
}