div#binding-table-container .ant-table table,
div#binding-table-container .ant-table-thead>tr>th,
div#binding-table-container .ant-table-tbody>tr>td {
  border: none;
}

div#binding-table-container .ant-table-tbody>tr>td {
  padding: 10px;
}

.refresh-icon {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  cursor: pointer;
  background-image: url(../../common/img/timeIcon/repeat-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.icon-unknow {
  width: 30px;
  height: 30px;
  background: url(../../common/img/commonIcon/attachment-image-icon.svg);
  background-size: 30px 30px;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon-microsoft-exchange {
  width: 30px;
  height: 30px;
  background: url(../../common/img/calendarIcon/Ms-exchange-icon.svg);
  background-size: 30px 30px;
  background-position: center center;
  background-repeat: no-repeat;
}

.provider-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.provider-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.provider-list-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
}

.provider-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--main-key-border-color);
  background-color: var(--main-selected-cell);
}

.provider-item:hover {
  background-color: var(--main-hover-cell);
}

.provider-item:active {
  background-color: var(--theme-active-background);
}

.account-binding-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.account-binding-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}