.tabs {
   display: flex;
    justify-content: left;
    background: #ffffff;
    padding: 10px 0;
    margin-left: 88px;

}
.journal-info-3d {
    display: contents;
}
.tab {
  padding: 10px 20px;
  background: #e9f3ff;
  margin: 0 5px;
  border-radius: 5px 5px 0 0;
  font-weight: bold;
  cursor: pointer;
}
.tab.active {
  background: #d5e9ff;
  color: #000;
  border-bottom: 3px solid #0070c0;
}
.content {
  max-width: 960px;
  margin: 20px auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  display: none;
}
.content.active {
  display: block;
}
.journal-info {
  background: #eefbef;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 6px;
  margin-bottom: 20px;
}
.journal-info strong {
  color: #004080;
}
.img-wrapper {
  position: relative;
  width: 100%;
}
.graphical-img img {
  width: 100%;
  border-radius: 6px;
}
.view-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #c70058;
  display: inline-flex;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.view-toggle button {
  padding: 5px 12px;
  border: none;
  background: transparent;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.view-toggle button.active {
  background: #fff;
  color: #c70058;
}
.view-toggle button svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.dot {
  display:inline-block;
  width:12px;
  height:12px;
  background:#c70058;
  border-radius:2px;
}


.journal-info-2d,
.journal-info-3d {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.journal-info-2d > div,
.journal-info-3d > div {
  flex: 1;
  min-width: 250px;
}

@media (max-width: 700px) {
  .journal-info-2d,
  .journal-info-3d {
    flex-direction: column;
  }

  .journal-info-2d > div,
  .journal-info-3d > div {
    min-width: 100%;
  }
.tabs {
 
    margin-left: 0!important;
}
.rower {
    width: 15em;
}
.columner {
    float: left;
    width: 100%!important;
    padding: 10px;
}
}
.content {
  display: none;
}
.content.active {
  display: block;
}