.SE-LD-container {
    margin: 0;
  }

  .SE-LD-container .SE-LD-navbar {
    display: flex;
    justify-content: flex-start;
    padding: 20px;
  }

  .SE-LD-container .SE-LD-btn-group {
    display: flex;
    border-radius: 10px;
    overflow: auto;
  }

  .SE-LD-container .SE-LD-btn-group>span {
    padding: 8px 24px;
    font-size: 15px;
    background-color: #2C70B91A;
    color: #464255;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-wrap: nowrap;

  }

  .SE-LD-container .SE-LD-btn-group>span:last-child {
    border-right: none;
  }

  .SE-LD-container .SE-LD-btn-group>span:hover {
    background: #2C70B9;
    color: white;
  }

  .SE-LD-container .SE-LD-btn-group .SE-LD-active {
    background-color: #2C70B9;
    color: white;
  }

  .SE-LD-container .SE-LD-content {
    display: none;
    border-radius: 8px;
    width: 100%;
    margin: auto;
  }

  .SE-LD-container .SE-LD-content.active {
    display: block;
  }


  .SE-LD-container .SE-LD-name-cell {
    display: flex;
    align-items: center;
    font-weight: 500;
  }

  .SE-LD-container .SE-LD-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid #2c70b9;
  }

  .SE-LD-container .SE-LD-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
  }
  @media (max-width:874px) {
    .SE-LD-container .SE-LD-btn-group>span {
      padding: 8px 15px;
      font-size: 15px;
      text-wrap: nowrap;
    }
  }