#devbranch-size-chart-window {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

#devbranch-size-chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  opacity: 1;
  border: 1px solid black;
  border-radius: 20px;
}

#devbranch-size-chart-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ccc;
  width: 100%;
  border-radius: 20px 20px 0 0;
  height: 50px;
}

#devbranch-size-chart-header > button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

#devbranch-size-chart-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 0 10px 10px 10px;
}

#devbranch-size-chart-title {
  font-size: 32px;
}

#devbranch-size-chart-inline-button {
  border: none;
  background-color: #fff;
  text-decoration: underline;
  margin-bottom: 20px;
  cursor: pointer;
  font-family: inherit;
}

#devbranch-size-chart-float-component {
  position: fixed;
  z-index: 9999;
  font-family: inherit;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/*#devbranch-size-chart-float-component > button {*/
/*  !*display: flex;*!*/
/*  font-size: 16px;*/
/*  padding: 10px 20px;*/
/*  !*background-color: transparent;*!*/
/*  !*border-radius: 10px 10px 0 0;*!*/
/*  !*cursor: pointer;*!*/
/*  font-family: inherit;*/
/*}*/

#devbranch-size-chart-description > p {
  text-align: center;
}

#devbranch-size-chart-unit-buttons {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

#devbranch-size-chart-unit-buttons > button {
  width: 50%;
  padding: 5px 7px;
  background-color: transparent;
  border-radius: 5px;
  cursor: pointer;
}

#devbranch-size-chart-table {
  width: 100%;
  height: auto;
}

#devbranch-size-chart-table > table {
  border-collapse: collapse;
  width: 100%;
  height: auto;
}

#devbranch-size-chart-table table th,
#devbranch-size-chart-table table td {
  padding: 10px;
  text-align: center;
  border: 1px solid black;
}

#devbranch-size-chart-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#devbranch-size-chart-img img {
  max-width: 60%; 
  height: auto;
  object-fit: contain;
}