.tabs-scheme-mf {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .tab-button-scheme-mf {
      padding: 10px 20px;
      background-color: #e0e0e0;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      font-size: 12px;
      transition: background-color 0.3s;
    }

    .tab-button-scheme-mf.active {
      background-color: #354c68;
      color: white;
    }

    .tab-content-scheme-mf {
      display: none;
      text-align: center;
    }

    .tab-content-scheme-mf.active {
      display: block;
    }