.table, .table__row, .table__cell {
  border-width: 1px;
  border-style: solid;
}

.table {
  background-color: var(--primary-color-1);
  font-size: 12px;
  color: var(--secondary-color-1);
  border-collapse: collapse;
  width: 100%;
}

.table__row {
  border-color: var(--secondary-color-3);
}

.table__row.row_head {
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
}

.table__cell {
  word-wrap: break-word;
  border-color: var(--secondary-color-3);
  padding: 10px;
}

.table__cell .cell__block-phar {
  margin-bottom: 10px;
}

.table__cell .cell__block-phar:last-child {
  margin-bottom: 0;
}

.table__cell.cell_index {
  font-weight: 700;
}

.table__cell.cell_index,
.table__cell.cell_avatar,
.table__cell.cell_status {
  text-align: center;
}

.table__cell.cell_title {
  font-weight: bold;
}

.table__cell.cell_title .planet__link {
  text-decoration: none;
  color: var(--primary-color-2);
  transition: .2s;
}

.table__cell.cell_title .planet__link:hover,
.table__cell.cell_title .planet__link:focus {
  color: var(--secondary-color-4);
}

.table__cell.cell_title .planet__link:active {
  color: var(--secondary-color-);
}

.table__cell.cell_status .status_green {
  color: var(--secondary-color-5);
}

.table__cell.cell_status .status_red {
  color: var(--secondary-color-6);
}