/* BORDER RADIUS GENERATOR */

.border-radius-generator {
  padding:60px 20px;
  background: linear-gradient(135deg,#ff416c,#ff4b2b);
  border-radius:20px;
  color:#fff;
  font-family:'Urbanist',sans-serif;
  box-shadow:0 20px 50px rgba(0,0,0,0.18);
  margin-bottom:40px;
  text-align:center;
}

.generator-card {
  max-width:600px;
  margin:0 auto;
  background:#fff;
  color:#222;
  padding:24px;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
  text-align:center;
}

.generator-card .controls label {
  display:block;
  margin-top:12px;
  font-weight:600;
}

.generator-card .controls input[type="range"] {
  width:100%;
  margin:6px 0 12px 0;
}

.preview-box {
  width:150px;
  height:150px;
  margin:20px auto;
  background:#f0f0f0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  color:#555;
  transition: border-radius 0.2s ease;
}

#cssCode {
  width:100%;
  margin-top:15px;
  padding:10px;
  border-radius:8px;
  border:1px solid #ccc;
  resize:none;
  height:60px;
  font-family:monospace;
}
