.floating-button {
    position: fixed;
    top: 25px; /* Position the button 20px from the top */
    left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
}
.floating-button .bar {
  width: 25px; /* Width of the bars */
  height: 3px; /* Height of the bars */
  background-color: white; /* Color of the bars */
  margin: 2px 0; /* Spacing between the bars */
  transition: 0.3s;
}

.floating-button.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.floating-button.open .bar:nth-child(2) {
  opacity: 0;
}

.floating-button.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



.sidebar-menu {
  position: fixed;
  left: -250px; /* Start off-screen */
  top: 0;
  width: 250px;
  height: 100vh;
  background-color: #111;
  transition: left 0.3s ease;
  overflow-y: auto;
  z-index: 999; /* Ensure it's below the floating button */
}

.sidebar-menu:hover {
  left: 0; /* Show the sidebar on hover */
}

.sidebarMenuInner {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-title {
  color: white;
  padding: 15px 10px; /* Increase padding for more space */
  background-color: #333; /* Add a background color to make it stand out */
  font-size: 18px; /* Increase font size for prominence */
  font-weight: bold; /* Make the text bold */
  border-bottom: 1px solid #444; /* Add a border for separation */
}


.section-links {
  list-style: none;
  padding: 0;
}

.section-links li a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  display: block;
}

.section-links li a:hover {
  background-color: #333;
}

.log-in-button {
    background-color: #2563eb;
    color: white;
    border-radius: 0.375rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background-color 0.3s;
    align-items: bottom;
    position: relative;
}

.log-in-button:hover {
    background-color: #1d4ed8;
}

@media (max-width: 1023px) {
    .log-in-button {
        padding: 0.75rem 1.5rem;
        font-size: 1.25rem;
        margin-top: 0.5rem; /* Adjust margin as needed */
    }
}

/* Bell icon and counter styles */
.notification-bell {
    position: relative;
    color: #f59e0b; /* Colorful bell icon */
    font-size: 2rem; /* Larger bell icon */
}

.notification-bell .notification-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444; /* Red background for the counter */
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-weight: bold;
}
.gray-bell {
    color: #d1d5db; /* Gray color */
}


