/* General Wrapper */
.alimony-calculator-wrapper {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: linear-gradient(135deg, #7f00ff, #e100ff);
  color: #fff;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Title and Description */
.calculator-title {
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
}

.calculator-description {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: center;
}

/* Form Styling */
.input-group {
  margin-bottom: 15px;
}

.input-group label {
  font-size: 1em;
  margin-bottom: 5px;
  display: block;
}

.calculator-input {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calculator-button {
  width: 100%;
  padding: 12px;
  font-size: 1.1em;
  background: #00c9ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

.calculator-button:hover {
  background: #ff758c;
}

/* Result Section */
.result-container {
  margin-top: 20px;
  text-align: center;
}

.result-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.result-value {
  font-size: 2em;
  color: #00ffb9;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .alimony-calculator-wrapper {
    padding: 15px;
  }

  .calculator-title {
    font-size: 1.8em;
  }

  .calculator-input,
  .calculator-button {
    font-size: 1em;
  }
}

/* Hidden Class */
.hidden {
  display: none;
}
