/* 🎯 ========== SHAPES-SPECIFIC STYLING ========== */

/* ✅ Shape container */
#object-container {
  display: flex;                     
  justify-content: center;
  align-items: center;
  width: clamp(100px, 14vw, 160px);        /* ✅ reduced overall size */
  height: clamp(100px, 14vw, 160px); 
  margin: 0 auto 20px auto;
  padding: 0;
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
}

/* ✅ Shape image */
#object-container img.object-img {
  width: 90%;
  height: auto;
  max-height: 90%;
  object-fit: contain;
  display: block;
}
