 .calculator-container {
      padding: 8px 16px;
      border-radius: 8px;
      background: rgba(218, 218, 218, 0.13);
          display: flex
;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    }

    .calculator-container label {
      border-radius: 4px;
      border: none;
      padding: 4px 16px;
      color: #000;
      text-align: right;
      font-family: IRANYekanXFaNum;
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px;
      /* 200% */
    }

    .calculator-container label,
    .calculator-container input,
    .calculator-container button,
    .calculator-container p {
      display: block;
      width: 100%;
      margin-bottom: 10px;
      font-family: IRANYekanXFaNum;
    }

    .calculator-container input {
      border-radius: 4px;
      background: #FFF;
      border: none;
      padding: 4px 16px;
    }

    .calculator-container button {
      background-color: #1816B3;
      color: white;
      border-radius: 4px;
      padding: 10px;
      border: none;
      cursor: pointer;
      font-weight: bold;
    }

    .calculator-container .result {
      font-weight: bold;
      color: #333;
      background: #fff;
      padding: 8px;
      border-radius: 4px;
    }

    .calculator-container .title {
      color: var(--Orange, #F16136);
      text-align: right;
      font-family: IRANYekanXFaNum;

      /* Sidebar Title */
      font-family: IRANYekanXFaNum;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: 160.6%;
      /* 25.696px */
    }

    .calculator-container .item {
      display: flex;
      flex-direction: row;
    }