
 

a {
    color: #e6025d;
    text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

 

.sidebar {
  padding: 20px;
  overflow-y: auto;
}

.sidebar h2 {
  margin-bottom: 20px;
}

#feedList {
  list-style-type: none;
  padding: 0;
}

#feedList li {
  margin-bottom: 10px;
  cursor: pointer;
  padding: 10px;
  background-color: #f8f8f8;
  border-radius: 4px;
  border:1px solid #6c757d;
  
}

#feedList li:hover {
  background-color: #e6025d;
  color:#fff !important;
  font-weight: bold;
  
}

#feedList 

.content {
  width: 75%;
  padding: 20px;
  overflow-y: auto;
}

#feedTitle {
  margin-bottom: 20px;
}

/* Styles for articles */
.article {
  margin-bottom: 30px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.article h3 {
  margin-bottom: 10px;
}

.article p {
  margin-bottom: 5px;
}

.article img.article-image {
  max-width: 60%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
}

/* Add some spacing between articles */
.article + .article {
  margin-top: 20px;
}

/* Responsive images for mobile */
.article img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Toggle button for mobile */
.toggle-btn {
  display: none;
  position: fixed;
  top: 10px;
  left: 10px;
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 10px;
  font-size: 20px;
  z-index: 1000;
}

@media (max-width: 768px) {
 
  .toggle-btn {
    display: block;
  }

  #feedList li {
    width: 100%;
    text-align: center;
  }
}
