#boardMembers {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
  }

  .position-section {
    margin-bottom: 30px;
  }

  .position-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .position-header {
    background-color: #30302f;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    border: none;
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
    height: 55px;
    justify-content: space-between;
    line-height: 55px;
  }

  .position-header::after {
    content: "";
    display: block;
    width: 30%;
    background-color: #595956;
  }

  .position-header::before {
    content: "";
    display: block;
    width: 30%;
    background-color: #595956;
  }

  .member-row {
    border: 2px solid #666;
    border-top: none;
    border-bottom: 1px solid #666;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
  }

  .member-row:nth-of-type(2) {
    border-top: 2px solid #666;
  }

  .member-row:last-of-type {
    border-bottom: 2px solid #666;
  }

  .member-cell {
    padding: 0 12px;
    vertical-align: middle;
    display: flex;
    justify-content: flex-start;
    height: 50px;
    align-items: center;
  }

  .name-cell {
    min-width: 95px;
    font-size: 18px;
    border-right: none;
    text-align: center;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .role-cell {
    width: 97px;
    padding: 0;
    font-size: 12px;
    position: relative;
    border: 1px solid;
    margin-left: 20px;
  }

  .notes-container {
    background-color: white;
    border: 2px solid #666;
    padding: 0;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
  }

  .designation-cell {
    width: 100px;
    font-size: 14px;
    border-left: none;
    text-align: center;
  }

  .company-cell {
    font-size: 18px;
    text-align: center;
    flex: 2;
    border-left: 1px solid;

    .company-name {
      width: 50%;
      text-align: right;
    }
  }

  .notes-badge {
    background-color: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    color: #495057;
  }
}

@media (max-width: 760px) {
  #boardMembers {
    & .company-cell {
      .company-name {
        width: 100%;
        text-align: center;
      }
    }

    .company-cell {
      display: flex;
      flex-direction: column;
      margin-top: -3px;
    }
  }


}