body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
  }

  .main-wrapper {
    flex: 1;
    margin-right: 200px;
    transition: margin-right 0.3s ease;
  }

  .main-wrapper.full {
    margin-right: 0;
  }

  .main-content {
    padding: 20px;
  }

  .full-width {
    width: 100%;
    margin-bottom: 10px;
  }

  .sidebar {
    width: 200px;
    background-color: #1f1f1f;
    color: white;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: auto;
    padding-top: 60px;
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .sidebar.hidden {
    transform: translateX(100%);
  }

  .sidebar a {
    display: block;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
  }

  .sidebar a:hover {
    background-color: #333;
  }

  .toggle-button {
    position: fixed;
    top: 20px;
    padding: 10px 14px;
    background-color: #1f1f1f;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: right 0.3s ease;
  }

  .toggle-button:hover {
    background-color: #333;
  }

  .toggle-button.sidebar-visible {
    right: 210px; /* When sidebar is visible */
  }

  .toggle-button.sidebar-hidden {
    right: 10px;  /* When sidebar is hidden */
  }

  header, nav {
    display: none;
  }

  .top-bar {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: top 0.3s;
  }