body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  letter-spacing: 1.2px;
  line-height: 26px;
}

.container {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
}

.main-content {
  background: #fff;
  padding: 20px;
  flex: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.side {
  flex: 4;

}
.ai {
  padding: 20px;
  background: #fff;
}

.item {
  padding: 15px 0px;
  border-bottom: 1px solid #ddd;
}
.item:last-child {
  border-bottom: none;
}

.date {
  color: #888;
  font-size: 0.9em;
}
.title {
  font-size: 17px;
  color: #333;
}
.summary {
  color: #737373;
  margin: 10px 0;
}

.link {
  color: #111;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}


.links a{
  color: #333;
  text-decoration: none;
}
.links a:hover{
  text-decoration: underline;
}
.links a svg{
  line-height: 24px;
  vertical-align: middle;
  transform: rotate(130deg);
}

.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination button {
  line-height: 28px;
  margin: 0 5px;
  padding: 6px 16px;
  border-radius: 6px;
  border: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
}

.pagination button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Media query for mobile devices */
@media (max-width: 768px) {
  .link {
    pointer-events: none;
  }

  .summary,
  .sources
   {
    display: none;
  }

  .item.expanded .summary,
  .item.expanded .sources {
    display: block;
  }

  .item {
    cursor: pointer;
  }

  .side {
    display: none;
  }
}
.feedback-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
