/* Minimal Reset & Base Styles - FORCE OVERRIDE VERSION */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/* Fix for Huge SVGs */
svg {
  max-width: 100% !important;
  height: auto !important;
  vertical-align: middle;
}

/* Fix for Images */
img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

/* Loader Fix - Ensure it's not hidden by mistake, but hidden when .photo-loading is removed */
.photo-loader {
  display: flex;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.8);
  z-index: 5;
}

/* Specific fix for the "Accedi" icon if it uses a specific class */
.mg2025-social-icon,
.icon,
.mg2025-btn-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
}

/* Ensure links containing icons don't start huge */
.mg2025-social-link,
.mg2025-btn {
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: center;
  gap: 8px;
}