/* Hide current time and offset displays in hero section time converter */
/* These can be easily restored by removing this CSS file or commenting out these rules */

.time-and-date-row,
.utc-time-display {
  display: none !important;
}

/* Alternative approach - you can use visibility: hidden instead of display: none 
   if you want to preserve the layout space */
/*
.time-and-date-row,
.utc-time-display {
    visibility: hidden !important;
}
*/
