/* FORCE LOGO TO ABSOLUTE CENTER */
div:has(img[src*="turtle-logo.png"]),
.widget:has(img[src*="turtle-logo.png"]) {
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  
  /* UPDATED: Reduced padding from 2rem to 0 */
  padding: 0 !important; 
  
  /* OPTIONAL: Use negative margin to pull the rows below it closer if 0 padding isn't enough */
  /* margin-bottom: -20px !important; */
  
  order: -999 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
}

/* CENTER LOGO IMAGE PERFECTLY */
img[src*="turtle-logo.png"] {
  /* UPDATED: You may want to lower this to 180px or 150px if it still feels too "tall" */
  height: 220px !important; 
  
  width: auto !important;
  max-width: 90vw !important;
  display: inline-block !important;
  margin: 0 auto !important;
  position: relative !important;
}

/* HIDE GROUP TITLES */
.group-header, h3 { 
  display: none !important; 
}