/* General styles for the website */
 

.content {
  padding: 20px;
}

/* Cookie consent pop-up styling */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-consent p {
  margin: 0;
  font-size: 14px;
}

.cookie-consent button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-consent button:hover {
  background-color: #45a049;
}