/* responsive.css */
/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  #calculator-selection,
  .calculator-container {
    padding: 20px;
  }

  .selection-card {
    padding: 20px;
  }

  h1 {
    font-size: 24px;
  }

  .button-group {
    flex-direction: column;
    margin-bottom: 30px;
    /* Added margin for spacing */
  }

  button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .disclaimer {
    padding: 12px;
  }

  .price-input-wrapper {
    max-width: 100%;
    /* Ensure full width on small screens */
  }

  .result-item {
    flex-direction: column;
    /* Stack results on very small screens */
    padding: 15px 0;
  }

  .result-item span:first-child {
    margin-bottom: 5px;
  }
}

/* Fix for specific results display on small screens */
@media (max-width: 600px) {
  .section-title {
    font-size: 14px;
  }

  .results h2 {
    font-size: 18px;
  }

  .total-tax {
    font-size: 16px;
  }
}