body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

#sidebar {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, #0f0f1a, #1a1a2b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: white;

  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

#sidebar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

#logo-container {
  width: 100%;
  flex-shrink: 0;
}
#sidebar-buttons {
  width: 100%;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#sidebar-buttons::-webkit-scrollbar {
  display: none;
}

#feed-container {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #feed-container {
    display: none;
  }
}

.sidebar-btn {
overflow: hidden;
}

/* Mobile styles */
@media (max-width: 768px) {
  .sidebar-btn {
    font-size: 0.8rem;
    padding: 8px;
  }
}

