 
  /* App Bar Styles */
.app-bar {
    position: fixed; /* Fixed position for app bar */
    top: 0; /* Stick to the top of the viewport */
    width: 100%; /* Full width */
    background-image: linear-gradient(135deg, #3B091Eff, #9B0C79ff); /* Gradient background color */
    color: #FFFFFF; /* Text color on app bar */
    padding: 10px 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow */
    z-index: 1000; /* Ensure it's on top of other elements */
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  
  .app-bar-content {
    display: flex;
    align-items: center;
  }
  
  .app-title {
    margin: 0;
    flex-grow: 1; /* Title takes up remaining space */
  }
  
  .drawer-button {
    background: none;
    border: none;
    color: inherit;
    font-size: 24px;
    cursor: pointer;
    outline: none;
  }
  
  /* Example of Drawer Styles (for demonstration) */
  .drawer {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #FFFFFF;
    box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow */
    transition: left 0.3s ease-in-out;
  }
  
  .drawer.open {
    left: 0;
  }
  