@import url("https://fonts.googleapis.com/css2?family=Proxima+Nova&display=swap");
body {
  font-family: "Proxima Nova", sans-serif;
  print-color-adjust: exact !important;
  font-size: 1rem;
}
.social-icon,
.today-date,
.login-icon {
  filter: brightness(0);
  transition: filter 0.3s;
}
.social-icon:hover {
  filter: brightness(1);
}
.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(50px);
  pointer-events: none;
}

.carousel-item.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 10;
}

.carousel-item.prev {
  transform: translateX(-50px);
}

.table-container {
  overflow-y: scroll;
  height: 400px;
}
table {
  width: 100%;
  table-layout: fixed; /* Sync column widths */
}
table tbody td {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: lighter;
}
table tbody {
  overflow-y: scroll;
  width: 100%;
}
.news-table table tr {
  display: flex;
  margin: 5px 15px;
}
.news-table table tr td:nth-child(2) {
  display: block;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4em; /* Adjust based on your line-height */
  line-height: 1.5em; /* Ensures proper 2-line height */
  word-break: break-word;
  width: 100%;
}
.news-table table tr:nth-child(even) td:nth-child(1) {
  background-color: #d1994a;
  color: black;
  padding: 5px 15px;
  text-align: center;
  border-radius: 15px;
  width: 20%;
}
.news-table table tr:nth-child(odd) td:nth-child(1) {
  background-color: #ededed;
  border-radius: 15px;
  text-align: center;
  width: 20%;
}
.btn-icon {
  filter: brightness(0) invert(1);
}
