body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #333;
  color: #fff;
}

header {
  background-color: #444;
  color: #fff;
  padding: 20px;
}

h1 {
  margin: 0;
  font-size: 24px;
  transition: color 0.3s ease;
  cursor: default;
  user-select: none;
  color: #fff;
}

h1:hover {
  color: #45a049;
}

main {
  padding: 20px;
  flex: 1;
}

.articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
}

article {
  padding: 20px;
  transition: transform 0.3s ease;
  background-color: #444;
  color: #fff;
  border-radius: 8px;
}

article:hover {
  transform: translateY(-5px);
}

h2 {
  margin-top: 0;
  font-size: 20px;
  color: #fff;
}

.meta {
  color: #777;
  font-size: 14px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  text-decoration: underline;
  color: #aaa;
}

.policy {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

footer {
  background-color: #444;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.go-back {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.go-back:hover {
  background-color: #555;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.cookie-notice .cookie-notice-text {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
}

.cookie-notice .cookie-notice-button {
  display: inline-block;
  padding: 5px 10px;
  background-color: #45a049;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-notice .cookie-notice-button:hover {
  background-color: #45a049;
}

body {
  background-color: #333;
  color: #fff;
}

header {
  background-color: #444;
  color: #fff;
}

h1 {
  font-size: 32px;
  letter-spacing: 2px;
}

.articles {
  margin-top: 20px;
}

article {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.read-more,
.policy {
  transition: color 0.3s ease, opacity 0.3s ease;
}

.read-more:hover,
.policy:hover {
  color: #45a049;
}

.go-back {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.go-back:hover {
  background-color: #777;
  color: #fff;
}

.footer-text {
  margin-bottom: 10px;
}

.cookie-notice {
  opacity: 0.9;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-color: #444;
}

.cookie-notice:hover {
  opacity: 1;
  transform: translateY(-2px);
}


.search-bar {
  display: flex;
  margin-bottom: 0px; 
}

#search-input {
  flex: 1;
  padding: 8px;
  font-size: 16px;
  border: none;
  border-radius: 4px 0 0 4px;
}

#search-input:focus {
  outline: none;
}

#search-input::placeholder {
  color: #ccc;
}

#search-form button {
  padding: 8px 12px;
  background-color: #45a049;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

#search-form button:hover {
  background-color: #3b8741;
}
