* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
  }

  html, body {
    height: 100%;
    overflow: hidden;
  }

  .full-container {
    display: grid;
    grid-template-areas:
      "header header header"
      "sidebar1 main sidebar2";
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: 70px 1fr;
    height: 100vh;
  }

  .header {
    grid-area: header;
    z-index: 1000;
  }

  .navbar {
    background-color: #000 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1000;
  }

  .sidebar1 {
    grid-area: sidebar1;
    background-color: #1c1c1c;
    color: white;
    padding: 20px;
    font-size: 18px;
  
    height: calc(100vh - 70px);
    position: sticky;
    top: 70px;
    position: relative;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sidebar2 {
    grid-area: sidebar2;
    background-color: #1c1c1c;
    color: white;
    padding: 20px;
    font-size: 18px;
    
    height: calc(100vh - 70px);
    top: 70px;
 
    position: relative;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .main {
    grid-area: main;
    background-color: black;
    color: white;
    padding: 20px;
    height: calc(100vh - 70px);
    position: relative;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .main::-webkit-scrollbar {
    display: none;
  }

  .chat-button-container {
    position: sticky;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
  }

  .chat-button-container button {
    z-index: 10;
  }
  .sidebar1,
.sidebar2 {
padding: 20px;
background-color: #1c1c1c;
color: white;
font-size: 18px;
/* font-weight: bold; */
height: calc(100vh - 70px);
overflow-y: auto;
scrollbar-width: none;
-ms-overflow-style: none;
position: sticky;
top: 70px;
}

  @media (max-width: 768px) {
    .full-container {
      grid-template-areas:
        "header"
        "sidebar1"
        "main"
        "sidebar2";
      grid-template-columns: 1fr;
      grid-template-rows: 70px auto 1fr auto;
    }

    .sidebar1,
    .sidebar2 {
      height: auto;
      position: static;
    }

    .main {
      height: auto;
    }
  }

  .glow-button {
    box-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88;
    transition: box-shadow 0.3s ease;
  }
  
  .glow-button:hover {
    box-shadow: 0 0 15px #00ff88, 0 0 25px #00ff88;
  }
  

  /* Make sure dropdown menu and items stay dark */
.dropdown-menu {
  background-color: #1a1a1a; /* dark background */
  color: #fff;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* For individual items inside the dropdown */
.dropdown-menu .dropdown-item {
  background-color: #1a1a1a;
  color: #fff;
}

/* Fix white background on hover or focus */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #333 !important;
  color: #fff;
}
