.calculator-container {
  font-family: var(--global-body-font-family);
  border: none;
  padding: 30px;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  background: white;
  border-radius: 10px;
}

.calculator-container label {
  font-size: 22px; /* Increased font size */
  color: #333;
  margin-bottom: 10px;
}

.calculator-container select {
  display: block;
  width: calc(100% - 20px);
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 1.1em;
  -webkit-appearance: none; /* Removes default styling of select dropdown */
  -moz-appearance: none;
  appearance: none; /* For other browsers */
  background-image: url('data:image/svg+xml;utf8,<svg fill="grey" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); /* Custom dropdown arrow */
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  cursor: pointer;
}

.calculator-container output {
  background: #ffeef8;
  color: #da70d6;
  font-weight: bold;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-container {
  max-width:97.4%;
  background: #fff0f5;
  padding: 15px;
  border-radius: 5px;
  box-shadow: inset 0 0 8px rgba(218, 112, 214, 0.3);
}

.result-item {
  margin-bottom: 15px;
}

.result-label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}

.result-value {
  font-size: 1.2em;
  color: #333;
}

/* Responsive Design */
@media (max-width: 600px) {
  .calculator-container {
    padding: 20px;
    margin: 10px;
  }
}