.container {
      background: #fff;
      border-radius: 10px;
         box-shadow: 0 0 10px rgba(0,0,0,0.1);

         padding: 15px;
         margin-bottom: 30px;
    }




    .nav-tab {
      background-color: #a7cf3c;
      border: none;
      border-radius: 0;
      color: #000;
      font-weight: bold;
      padding: 15px;
      text-align: left;
      width: 100%;
      margin-bottom: 5px;
    }

    .nav-tab.active, .nav-tab:hover {
      background-color: #90bc31;
      color: #fff;
    }

    .tab-content {
      background-color: #fff;
      border-left: 1px solid #e1e1e1;
      padding: 20px;
    }

    .list-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 10px;
      border-bottom: 1px solid #27ae60;
    }

    .list-item i {
      color: #27ae60;
    }

    .arrow-label {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tab-title {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 20px;
    }