/* Base styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #f5f5f5;
    background-color: #121212;
  }
  
  a {
    color: #f5f5f5;
    text-decoration:underline;
  }
  
  .container {
    display: flex;
    height: 100vh;
  }
  
  /* Sidebar */
  .sidebar {
    width: 120px;
    background-color: #1e1e1e;
    color: #f5f5f5;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: fixed; /* Ensures the sidebar stays fixed */
    top: 0;
    bottom: 0;
    left: 0;
    height: 100vh; /* Full height */
    overflow-y: auto; /* Allows scrolling if menu is long */
    transition: transform 0.3s ease;
  }
  
  .sidebar .logo {
    font-size: 24px;
    color: #ffc107; /* Warm yellow accent */
  }

  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .logo img {
    max-width: 100%;
    height: auto;
  }
  
  .sidebar .menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .sidebar .menu li {
    margin-bottom: 15px;
  }
  
  .sidebar .menu li a {
    text-decoration: none;
    color: #f5f5f5;
    transition: color 0.3s;
  }
  
  .sidebar .menu li a:hover {
    color: #ffc107;
  }
  
  /* Main Content */
  .main {
    margin-left: 160px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  
  .header {
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer {
    background-color: #1e1e1e;
    margin-top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: left;
    font-size: small;
  }
    
  .menu-toggle {
    font-size: 24px;
    color: #ffc107;
    background: none;
    border: none;
    cursor: pointer;
    display: none; /* Hidden on desktop */
    position: fixed; /* Keeps it visible when scrolling */
    top: 15px; /* Adjust to position at the top */
    left: 5px; /* Align to the left */
    z-index: 1000; /* Ensures it's above other elements */
    padding: 10px;
    background-color: #1e1e1e;
    border-radius: 5px;
  }
  
  .content {
    padding: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .content {
      padding: 5px;
    }

    .sidebar {
      transform: translateX(-250px);
    }
  
    .sidebar.visible {
      transform: translateX(0);
    }

    .header {
      padding: 0 px;
      padding-left: 80px;
      margin-left: -50px;
    }

    .footer {
      padding-left: 10px;
      margin-left: -50px;
      padding-right: 40px;
    }

    .main {
      padding-left: 50px; /* Adds space to avoid overlap with the button */
      margin-left: 0;
    }
  
    .menu-toggle {
      display: block;
    }

    .logo {
      margin-top: 30px;
    }

    
  }
  