*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


.wg-calculator-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  max-width: 520px;
  margin:40px auto;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.wg-calculator-container h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.wg-section {
  margin-bottom: 25px;
}

.wg-label {
  display: block;
  text-align: left;
  font-weight: 600;
  margin-bottom: 6px;
}

.wg-input {
  width: 49%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  margin-bottom: 10px;
}

.wg-button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.wg-button:hover {
  opacity: 0.9;
}

.wg-result {
  display: none;
  margin-top: 25px;
  padding: 20px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  animation: wgFade 0.6s ease-in-out;
}
.wg-result-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}


@keyframes wgFade {
  from {opacity: 0; transform: translateY(15px);}
  to {opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
  .wg-calculator-container {
    padding: 20px;
  }
  .wg-calculator-container {
  
  max-width:95%;
  margin:40px auto;
  width: 95%;
}

.wg-calculator-container h1 {
  font-size:22px
}

  
  
  
}