* {
  font-family: var(--ifx-font-family);
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.header__info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.infoboard__wrapper {
  display: flex;
  gap: 15px;
  background-color: #f1f1f1;
  padding: 5px 10px;
  border-radius: 10px;
}

.title {
  font-size: 30px;
  font-weight: bold;
}

.view {
  margin: auto;
}

.wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height) - 15px);
  overflow: auto;
}

table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
}

thead tr th {
  border-top: 1px solid #dddddd;
}

td, th {
  padding: 10px;
  background-color: white;
  border: none;
  box-shadow: 0 0 0 1px #dddddd;
  box-sizing: border-box;
}

table th:nth-child(1) {
  width: 150px;
}

table th:not(:nth-child(1)) {
  width: 240px;
}

th {
  position: sticky;
  top: 0;
  background-color: white;
}

.sticky-col {
  position: sticky;
  z-index: 1;
}

th.sticky-col {
  z-index: 2;
}

.second-col {
  left: 0;
  border-left: 1px solid #ddd;
}

.wrapped-content {
  width: 250px;
  white-space: normal;
}

a {
  text-decoration: none;
  color: black;
}

.basic__info {
  display: flex;
  gap: 5px;
}

ul {
  padding: 0 5px;
  margin: 0 15px;
  list-style-type: none;
}

tr:nth-child(even) td {
  background-color: #f1f1f1;
}

ul li {
  font-size: 12px;
  display: flex;
  gap: 5px;
  line-height: 13px;
}
ul li span:first-child {
  display: flex;
}
ul li span:last-child {
  line-height: 16px;
}

.version__wrapper {
  display: flex;
  flex-direction: column;
}

ifx-icon {
  color: rgb(10, 130, 118);
}

.check__icon {
  width: 10px;
  height: 10px;
}

.planned__icon {
  width: 12px;
  height: 12px;
  vertical-align: sub;
}