    .mls-calculator {
      max-width: 400px;
      padding: 16px;
      border: 1px solid #ccc;
      font-family: Arial, sans-serif;
      font-size: 14px;
      background: #f9f9f9;
      border-radius: 8px;
    }
    .mls-calculator label {
      display: block;
      margin: 8px 0 2px;
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 16px;
    }
    .mls-calculator input,
    .mls-calculator select {
      width: 100%;
      padding: 8px;
      margin-bottom: 10px;
      box-sizing: border-box;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 16px;
    }
    .mls-calculator button {
      display: block;
      width: 100%;
      padding: 10px;
      margin: 16px 0;
      background-color: #1d53ff;
      color: white;
      border: none;
      border-radius: 8px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: 16px;
      font-style: italic;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    .mls-calculator button:hover {
      background-color: #1a47e6;
    }
    .mls-result {
      margin-top: 16px;
      font-weight: bold;
    }
    .mls-footer {
      font-size: 12px;
      color: #666;
      margin-top: 12px;
    }