*{
  box-sizing: border-box;
}
body {
  overflow: hidden;
  height: 100vh;
  font-family: sans-serif;
}
.container {
  display: flex;
  height: 85vh;
  flex-direction: row;
  position: relative;
}

.right {
  position: sticky;
  width: 45%;
  height: 100vh;
  top: 0;
  background-color: #white;
  align-items: center;
  overflow: hidden;
}

.center {
  flex: 1;
  background-color: #f2f2f2;
  overflow: auto;
}


ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}
.image {
  background-color: #f2f2f2;
  text-align: center;
  margin: 10px;
}

.image img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin: 30px;
}
.bttFlex{
display: flex;
}
.btt{
margin-left: 30px;
padding: 20px;
}
.button-style {
  padding: 10px 20px;
  background-color: white;
  color: #6c757d;
  border: 1px solid #6c757d;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.button-style:hover {
  background-color: #6c757d;
  color: white;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .center {
    height: 60vh;
    overflow-y: auto;
  }

  .right {
    order: -1;
    position: sticky;
    top: 0;
    width: 100%;
    min-width: unset;
    height: auto;
    border-top: 1px solid #ccc;
     z-index: 5;
  }
  .image img {
    width: 250px;
    margin: 5px;
    padding-left: 70px;
  }
}



header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background-color: #0dcaf0;
      color: #212529;
      position: relative;
      z-index: 1000;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 70px;
      margin-right: 10px;
    }

    .logo span {
      font-size: 1.5rem;
      font-weight: bold;
    }

    nav {
      display: flex;
      gap: 30px;
    }

    nav a {
      text-decoration: none;
      color: #212529;
      font-size: 1rem;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #ffffff;
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background-color: #212529;
      margin: 4px 0;
      transition: 0.4s;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        background-color: #0dcaf0;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px;
        gap: 20px;
        z-index: 999;
      }

      nav.active {
        display: flex;
      }
      .menu-toggle {
        display: flex;
      }
    }

    .loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 20px;
      z-index: 9999;
    }

    .loading-message {
      text-align: center;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 20px;
      border-radius: 10px;
    }

footer {
  bottom: 0;
  width: 100%;
  background: #0dcaf0;
  color: #212529;
  padding: 20px;
  text-align: center;
  z-index: 1000;
}

