
/* SECTION */
.section-box{
  background:#fafafa;
  border:1px solid #eee;
  border-radius:10px;
  padding:18px;
  margin-bottom:18px;
}

/* LABEL */
.label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
}

/* INPUT */
.input-box{
  width:100%;
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
  box-sizing:border-box;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:12px;
}

/* CARD (SAME OLD STYLE) */
.stat-card{
  background:#fff;
  border:1px solid #ddd;
  border-radius:8px;
  padding:15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
  animation:fade .3s ease-in;
}

/* SHAPE BOX */
.shape-box{
  display:flex;
  align-items:center;
  gap:12px;
}

/* SHAPE BASE */
.shape{
  width:50px;
  height:50px;
}

/* COPY */
.copy-btn{
  padding:6px 10px;
  font-size:12px;
  background:#0a3d62;
  color:#fff;
  border:none;
  border-radius:4px;
  cursor:pointer;
}

/* BUTTON */
.btns{
  text-align:right;
  margin-top:15px;
}

.app{
  padding:12px 20px;
  background:linear-gradient(135deg,#0a3d62,#07517d);
  color:#fff;
  border:none;
  border-radius:4px;
  cursor:pointer;
}

/* ANIMATION */
@keyframes fade{
  from{opacity:0;transform:scale(.9);}
  to{opacity:1;transform:scale(1);}
}

/* SHAPES */
.circle{border-radius:50%;background:#f97316;}
.square{background:#3b82f6;}

.triangle{
  width:0;height:0;
  border-left:25px solid transparent;
  border-right:25px solid transparent;
  border-bottom:50px solid #10b981;
}

.rectangle{width:60px;height:35px;background:#6366f1;}

.oval{width:60px;height:35px;background:#f59e0b;border-radius:50%;}

.diamond{background:#14b8a6;transform:rotate(45deg);}

.pentagon{
  background:#8b5cf6;
  clip-path: polygon(50% 0%,100% 38%,82% 100%,18% 100%,0% 38%);
}

.hexagon{
  background:#ef4444;
  clip-path: polygon(25% 5%,75% 5%,100% 50%,75% 95%,25% 95%,0% 50%);
}

.octagon{
  background:#0ea5e9;
  clip-path: polygon(30% 0%,70% 0%,100% 30%,100% 70%,70% 100%,30% 100%,0% 70%,0% 30%);
}

.star{
  background:#facc15;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.heart{
  background:#fb7185;
  clip-path: polygon(50% 85%, 0% 35%, 25% 0%, 50% 20%, 75% 0%, 100% 35%);
}

.parallelogram{background:#22c55e;transform:skewX(-20deg);}

.trapezoid{
  width:60px;height:0;
  border-bottom:40px solid #a855f7;
  border-left:15px solid transparent;
  border-right:15px solid transparent;
}

.crescent{
  border-radius:50%;
  background:#64748b;
  box-shadow:-15px 0 0 0 #f4f4f4 inset;
}