/*!
Theme Name: UiCore Pro Child
Theme URI: https://uicore.co
Description: One framework for all your website needs.
Author: UiCore
Author URI: https://uicore.co
Template: uicore-pro
Version: 1.0.0
Text Domain: uicore-pro
*/

 /* Add your custom style here */


/* ---------- 3-column grid ---------- */
.cf7-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

/* individual field wrapper */
.cf7-grid .field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;          
  min-width: 0;            /* prevents overflow in flex children */
}

/* style labels and inputs for nicer layout */
.cf7-grid .field label {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: #333;
}

/* target common CF7 outputs (adjust if you use different markup) */
.cf7-grid .field input[type="text"],
.cf7-grid .field input[type="email"],
.cf7-grid .field input[type="tel"],
.cf7-grid .field input[type="date"],
.cf7-grid .field input[type="url"],
.cf7-grid .field select,
.cf7-grid .field textarea {
  padding: 0.8rem 0.6rem;
  border: 1px solid #d1d5db;
  border-radius: 0px;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
}

textarea {
    height:150px;
}

/* full width element (span all 3 columns) */
.cf7-grid .full-width {
  grid-column: 1 / -1;
}

/* span 2 columns */
.cf7-grid .col-span-2 {
  grid-column: span 2;
}

/* small tweak: checkboxes/radios inline */
.cf7-grid .field .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin-right: 0.75rem;
}

.ui-menu-img {
    height: 20px !important;
}
.program-schedule th
{
	border: 1px solid #74613C;
    padding: 5px; color:#74613C;
}
.program-schedule td
{
	text-align:center;
	border: 1px solid #74613C;
    padding: 5px;
	color:#74613C;
}

/* responsive: 2 columns on medium screens */
@media (max-width: 900px) {
  .cf7-grid {
     grid-template-columns: repeat(1, 1fr);
  }
  /* keep full-width and col-span-2 behaving well */
  .cf7-grid .col-span-2 { grid-column: 1 / -1; }
}

/* single column on small screens */
@media (max-width: 600px) {
  .cf7-grid {
      grid-template-columns: repeat(1, 1fr);
  }
  .cf7-grid .col-span-2,
  .cf7-grid .full-width { grid-column: 1 / -1; }
}

/* Optional: nicer focus state */
.cf7-grid .field input:focus,
.cf7-grid .field select:focus,
.cf7-grid .field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
  border-color: #3b82f6;
}

/* Optional: compact mode */
.cf7-grid.compact { gap: 0.5rem; }
.cf7-grid.compact .field { gap: 0.25rem; }
