.main-container {
  width: 1200px;
  margin: 0 auto;
}

.content-box {
  background: #fff;
  box-shadow: 0px 4px 28px 0px rgba(0, 73, 173, 0.04);
  border-radius: 8px;
  padding: 20px;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}

.tab {
  font-size: 20px;
  font-weight: 400;
  padding: 0 0 10px 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: #333333;
}

.tab.active {
  font-weight: bold;
  color: #1764ce;
  border-bottom: 3px solid #1764ce;
}

.tab.inactive {
  font-weight: 400;
  color: #333;
}

.organization-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.table-header {
  display: flex;
  background: #1764ce;
  color: white;
  padding: 0 16px;
  height: 50px;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.header-name {
  width: 60%;
}

.header-phone {
  width: 40%;
}
.table-content {
  max-height: 520px;
  overflow-y: auto;
}
.table-row {
  display: flex;
  padding: 0 20px;
  height: 50px;
  align-items: center;
  border-bottom: 0.5px dashed #cbd0d7;
  font-size: 16px;
  color: #333;
}

.row-name {
  width: 60%;
  cursor: pointer;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}

.row-name:hover {
  color: #1764ce;
}

.row-phone {
  width: 40%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .main-container {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .content-box {
    padding: 15px;
  }

  .table-header,
  .table-row {
    padding: 0 10px;
    font-size: 14px;
  }

  .header-name,
  .row-name {
    width: 65%;
  }

  .header-phone,
  .row-phone {
    width: 35%;
  }
  .row-name,
  .row-phone {
    overflow: visible;
    text-overflow: visible;
    white-space: normal;
  }
}
