   /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            line-height: 1.5;
            color: #333;
            background-color: #f4f4f4;
        }

        /* Topbar (Header/Navbar) */
        .topbar {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0 15px;
        }
        .topbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            height: 50px;
        }
        .logo {
            font-size: 20px;
            font-weight: bold;
            color: #ff8877;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 15px;
        }
        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
        }
        .nav-menu a:hover {
            color: #007bff;
        }
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
        }
        .search-input {
            padding: 6px 10px 6px 30px;
            border: 1px solid #ccc;
            border-radius: 20px;
            font-size: 13px;
            width: 180px;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            border-color: #007bff;
        }
        .search-icon {
            position: absolute;
            left: 8px;
            width: 14px;
            height: 14px;
            fill: #666;
            transition: fill 0.3s;
        }
        .search-input:focus + .search-icon {
            fill: #007bff;
        }
        .user-actions {
            display: flex;
            gap: 8px;
        }
        .user-actions a {
            text-decoration: none;
            color: #333;
            font-size: 13px;
        }
        .user-actions button {
            background: #007bff;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 13px;
            transition: background 0.3s;
        }
        .user-actions button:hover {
            background: #0056b3;
        }

        /* Hamburger Menu for Topbar (Nav Links) */
        .hamburger-nav {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .hamburger-nav span {
            width: 20px;
            height: 2px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hamburger Menu for Sidebar (Mobile) */
        .hamburger-sidebar {
            display: none;
            flex-direction: column;
            cursor: pointer;
            margin-right: 10px;
        }
        .hamburger-sidebar span {
            width: 20px;
            height: 2px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Main Layout with Flexbox */
        .main-layout {
            display: flex;
            flex-wrap: nowrap;
            max-width: 1200px;
            margin: 1px auto;
            gap: 15px;
            padding: 0 15px;
        }

        /* Fixed Sidebar */
        .sidebar {
            background: #fff;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 15px;
            position: fixed;
            width: 220px;
            max-height: calc(100vh - 60px);
            overflow-y: auto;
            top: 60px;
            flex-shrink: 0;
            transition: transform 0.3s ease; /* For mobile slide-in */
        }
        .sidebar h3 {
            margin-bottom: 10px;
            color: #007bff;
            font-size: 16px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 8px;
        }
        .sidebar a {
            text-decoration: none;
            color: #333;
            display: block;
            padding: 6px;
            border-radius: 4px;
            font-size: 14px;
            transition: background 0.3s;
        }
        .sidebar a:hover {
            background: #f0f8ff;
            color: #007bff;
        }

        /* Main Content */
        .main-content {
            background: #fff;
            padding: 15px;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            flex-grow: 1;
            margin-left: 235px; /* Offset for fixed sidebar */
        }
        /*.main-content h2 {
            margin-bottom: 10px;
            color: #333;
            font-size: 20px;
        }
        .main-content p {
            margin-bottom: 10px;
            font-size: 14px;
        }*/

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
            font-size: 15px;
            font-family: Roboto, sans-serif;
            line-height: 1.5;
            color: #333;
            background-color: #f4f4f4;
        }
        .scrollable-container .code-style {
      font-size: 12px;
    }
        .scrollable-container-out .output-style {
      font-size: 12px;
    }
   
            /* Topbar Hamburger for Nav Links */
            .hamburger-nav {
                display: flex;
            }
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                padding: 15px;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
                gap: 10px;
                z-index: 99;
            }
            #nav-toggle:checked ~ .nav-menu {
                display: flex;
            }
            #nav-toggle:checked + .hamburger-nav span:nth-child(1) {
                transform: rotate(45deg) translate(-4px, 5px);
            }
            #nav-toggle:checked + .hamburger-nav span:nth-child(2) {
                opacity: 0;
            }
            #nav-toggle:checked + .hamburger-nav span:nth-child(3) {
                transform: rotate(45deg) translate(-4px, -5px);
            }

            /* Sidebar Hamburger for Mobile */
            .hamburger-sidebar {
                display: flex;
            }
            .sidebar {
                position: fixed;
                top: 50px; /* Below topbar */
                bottom: 50px;
                left: 0;
                width: 220px;
                height: calc(100vh - 50px);
                transform: translateX(-100%); /* Hidden by default */
                z-index: 99;
            }
            #sidebar-toggle:checked ~ .main-layout .sidebar {
                transform: translateX(0); /* Slide in when checked */
            }
            #sidebar-toggle:checked + .hamburger-sidebar span:nth-child(1) {
                transform: rotate(-45deg) translate(-4px, 5px);
            }
            #sidebar-toggle:checked + .hamburger-sidebar span:nth-child(2) {
                opacity: 0;
            }
            #sidebar-toggle:checked + .hamburger-sidebar span:nth-child(3) {
                transform: rotate(45deg) translate(-4px, -5px);
            }

            /* Main Layout and Content */
            .main-layout {
                flex-direction: column;
                padding: 0;
            }
            .main-content {
                padding: 0;
                margin-left: 0;
            }
            .search-input {
                width: 140px;
            }
  
}

          /*style-pnl*/
.sidepnl  {
  width: 0;
  position: fixed;
  z-index: 1;
  height:100%;
  width: 0;
  top: 50px;
  left: 0;
  background-color: #eee;
  overflow-x: hidden;
  transition:0.01s;
  padding-top: 30px;
}

.sidepnl a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 15px;
  color: #010101;
  display: block;
  transition: 0.3s;
}

.sidepnl a:hover {
  color: #a1a1a1;
}

.sidepnl .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
}

.openbtn {
  font-size: 25px;
  cursor: pointer;
  background-color: white;
  color: #111;
  padding: 1px 5px 5px 5px;
  border: none;
  margin: 3px 0;
}

.openbtn:hover {
  background-color:#fff;
  transition: 0.3s;
}


#sidepnl {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  max-width: 300px;
  width: 80%;
  height: 100%;
  padding: 2rem;
  background-color: var(--bg-color-2);
  box-shadow: 0 10px 20px -4px #000;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 0.3s ease, visibility 0.2s ease, transform 0.3s ease;
}
@media  screen and (min-width:768px) {
.openbtn {
    display: none;
  }
} 
        

        .bottombar {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0 15px;
        }
        .bottombar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            height: 50px;
        }
         /* Footer*/
          .footer {
            padding: 20px;
            text-align: center;
            background-color: white;
            color: black;
            }
            
            .scrollable-container {
      width: 100%; /* Full width of the screen */
      overflow-x: auto; /* Enable horizontal scrolling */
      white-space: nowrap; /* Prevent content from wrapping */
      background-color: #f0f0f0;
      padding: 10px;
    }
            .code-style {
            background-color: #f0f0f0;
            font-family: Courier, monospace;
            font-size: 17px;
            color: #505050;
            }
            .space-style {
            font-size: 5px;
            }
            .scrollable-container-out {
      width: 100%; /* Full width of the screen */
      overflow-x: auto; /* Enable horizontal scrolling */
      white-space: nowrap; /* Prevent content from wrapping */
      background-color: #e1f2f7;
      padding: 10px;
    }
            .output-style {
            background-color: #e1f2f7;
            font-family: Courier, monospace;
            font-size: 17px;
            color: #505050;
            }


.cont {
  flex-wrap: wrap;
  background-color: #000;
}

/* Copy button */
  .copy-btn {
            position:static;
            width: 80px;
            top: 5px;
            right: 5px;
            background: #fff;
            border: none;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            border-radius: 3px;
        }

        .copy-btn:hover {
            background: #f5f5f5;
        }

        .copy-icon {
            width: 16px;
            height: 16px;
            margin-right: 5px;
        }