/**
 * Iframe height fix for courses calculator
 * Sets height to 650px for iframes loading careersportal.ie/courses/calculator
 */

/* Target iframe with courses calculator URL */
iframe[src*="preprod.careersportal.blue/courses/calculator"] {
  height: 650px !important;
  min-height: 650px;
}

/* Alternative: Apply to all iframes on specific pages */
body.page-courses-calculator iframe {
  height: 650px !important;
  min-height: 650px;
}
