body {
    margin: 0;
    font-family: sans-serif;
}

.wrapper {
    display: flex; /* Uses Flexbox for layout */
    flex-direction: row;
    min-height: 100vh; /* Ensures the wrapper takes at least the full screen height */
}

.left-sidebar{
    /* width: clamp(140px, 15vw, 260px); */
    flex: 0.5;
    padding: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background-image: url("/images/negativeworld.jpg");
    background-position: left;
    background-repeat: repeat-y;
    background-size: cover;
    position: relative;
}

.right-sidebar {
    /* width: clamp(140px, 15vw, 260px); */
    flex: 0.5;
    padding: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    /* background-image: url("/images/negativeworld.jpg");
    background-position: right; */
    /* background-repeat: no-repeat; */
    /* background-size: cover;
    position: relative;
    background-repeat: repeat-y; */
}

.right-sidebar img {
    object-fit: cover;
    object-position: right;
}

.topnav {
    background-color: #bffbff;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.left-sidebar img, .right-sidebar img {
    /* max-width: 100%; */
    /* height: auto; */
    /* object-fit: cover;
    object-position: left;   */
}

.main-content {
    display: flex;
    flex-direction: column;
    padding: 0px;
    overflow-y: auto;
    /* width: clamp(140px, 15vw, 260px); */
    width: 1000px;
}

.main-header {
    position: sticky;
    top: 0;
    background: white;
    padding: 20px;
    border-bottom: 1px solid #ccc;
    z-index: 10;
}

.main-body {
    padding: 20px;
}

/* Optional: add background colors to visualize the layout */
.left-sidebar {
    background-color: #f0f0f0;
}

.right-sidebar {
    background-color: #e0e0e0;
}
