@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.telegram-growth-wrapper {
  font-family: 'Inter', sans-serif;
  padding: 20px;
}

.telegram-growth-wrapper .telegram-calculator {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 460px;
  margin: auto;
  transition: all 0.3s ease-in-out;
}

.telegram-growth-wrapper .telegram-calculator h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2c3e50;
}

.telegram-growth-wrapper .telegram-calculator label {
  font-weight: 600;
  color: #34495e;
  margin-bottom: 8px;
  display: block;
}

.telegram-growth-wrapper .telegram-slider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.telegram-growth-wrapper input[type="range"] {
  flex-grow: 1;
  cursor: pointer;
}

.telegram-growth-wrapper input[type="number"] {
  width: 80px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
}

.telegram-growth-wrapper .telegram-calculator button {
  width: 100%;
  padding: 12px;
  background: #4e54c8;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.telegram-growth-wrapper .telegram-calculator button:hover {
  background: #3a3fb3;
}

/* Updated Result Box */
.telegram-growth-wrapper #result {
  margin-top: 25px;
  background: #f4f6fc;
  border-left: 6px solid #4e54c8;
  padding: 20px;
  color: #2c3e50;
  font-size: 17px;
  border-radius: 12px;
  text-align: left;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
