/* Package form styles */

/* Video meeting limit toggle based on mentor type selection */
#video-meeting-section {
  display: none;
}

#video-meeting-section[data-visible="true"] {
  display: flex;
}

form:has(#package_mentor_type_organization:checked) #video-meeting-section {
  display: flex;
}

/* Duration section toggle based on price type selection */
#duration-section {
  display: flex;
}

#duration-section[data-visible="false"] {
  display: none;
}

form:has(#package_price_type_additional:checked) #duration-section {
  display: none;
}