/* ============================================================
   CSS Box Shadow & Glassmorphism Generator Styling - Scenic IT Solutions
   ============================================================ */

/* Interactive Preview Box Canvas */
.shadow-preview-stage {
  background: #08080c;
  border: 1px solid #24242e;
  border-radius: 20px;
  padding: 60px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  margin-bottom: 25px;
  background-image: radial-gradient(#1c1c24 1px, transparent 1px);
  background-size: 20px 20px;
}

.shadow-preview-box {
  width: 220px;
  height: 180px;
  background: #121218;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.15s ease-out;
}

/* Preset Cards Grid */
.shadow-preset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.shadow-preset-card {
  background: #0d0d12;
  border: 1px solid #24242e;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #cccccc;
  transition: all 0.2s ease;
}

.shadow-preset-card:hover {
  border-color: #F68B1F;
  color: #ffffff;
  transform: translateY(-2px);
}
