 /* Common styles */
 .bg-007dc4 {
  background-color: #007dc4;
}

.bg-2a1070 {
  background-color: #2a1070;
}

.text-007dc4 {
  color: #fff;
}

.text-2a1070 {
  color: #2a1070;
}

/* Custom styles for filters */
.filter-label {
  font-weight: bold;
}

.filter-select {
  border: 1px solid #2a1070;
  border-radius: 4px;
  padding: 8px;
  width: 100%;
  background-color: #f7f7f7;
  color: #007dc4;
}

.filter-select:focus {
  outline: none;
  border-color: #007dc4;
}

/* Article card styles */
.article-card {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.article-content {
  font-size: 1rem;
  color: #333;
}

.article-image {
  max-width: 100%;
  height: auto;
  margin-top: 16px;
}

/* Sticky footer styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

.brd-foot {
  border-top: solid 2px #f7f7f7;
}

#article-search {
  width: 250px;
}

#search-button {
  cursor: pointer;
}