.logo {
  padding: 0;
}

.introduction-section {
  font-size: 16px;
  margin: 2%;
  text-align: justify;
}

.introduction-section ol {
  margin-top: 0.5%;
}

.img {
  width: 150px;
  height: 100px;
}

.titles {
  margin: 2%;
  /* Adjusts the margin from top and left */
  color: #26619c;
  font-size: 50px;
}

.titles-description {
  margin: 2%;
  /* Adjusts the margin from top and left */
  color: black;
  font-size: 20px;
}

.subtitles {
  margin: 2%;
  /* Adjusts the margin from top and left */
  color: #26619c;
  font-size: 35px;
}

.body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.nav-tabs > li > a {
  font-size: 20px;
}

.div-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2%;
  background-color: white;
  margin-bottom: 15px;
  margin-top: 15px;
}

.container-1 {
  display: flex;
  flex-direction: row;
  margin-left: 0%;
  margin-bottom: 0;
}

.row {
  width: 98%;
  margin: 0.75%;
  display: flex;
  justify-content: space-between;
  border: none;
}

.column-left {
  display: flex;
  flex-direction: column;
  flex: 0.15;
  padding: 20px;
  height: 95vh;
  box-sizing: border-box;
  margin-right: 20px;
  margin-top: 20px;
  background-color: #f0f0f0;
  border-radius: 12px;
}

.input-container {
  overflow-y: scroll;
}

.clinical-data {
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.2;
}

/* Make the input items more nearby than default bootstrap */
.form-group {
  margin-bottom: 0.75rem;
}

.extra-info {
  font-size: 12px;
  margin: 0.5;
  width: 75%;
}

.column-header {
  margin-top: 2%;
  margin-bottom: 5%;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
}

.main-page {
  height: 95vh;
  width: 100%;
}

.risk-class-text {
  display: flex;
  text-align: center;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  font-size: calc(1vh + 1vw);
  border: none;
  padding: 20px;
  margin: 10px auto;
  width: 50%;
  height: 10%;
  border-radius: 8px;
  background-color: #f8f8f8;
  box-sizing: border-box;
}

.risk-class-text p {
  margin: 0;
  width: 100%;
}

.low-risk {
  color: #2576af;
}

.moderate-risk {
  color: #309d2f;
}

.high-risk {
  color: #ff7d12;
}

.very-high-risk {
  color: #d02928;
}

.survival-graph-container {
  display: flex;
  flex-direction: column;
  height: 75%;
  overflow: hidden;
}

/* Make sure the graph can grow with the flexbox */
.survival-graph-container > div {
  flex-grow: 1;
}

.risk-bar-container {
  display: flex;
  flex-direction: column;
  height: 15%;
  max-height: 200px;
  overflow: hidden;
}

.survival-table {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.image-container {
  display: flex;
  flex-direction: row;
}

