#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #fff;
  font-size: 14px;
  padding: 12px 20px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
  gap: 10px;
}

#cookie-bar .cookie-text {
  flex: 1;
  min-width: 200px;
}

#cookie-bar a {
  color: #90caf9;
  text-decoration: underline;
}

#cookie-bar a:hover {
  text-decoration: none;
}

#cookie-bar button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#cookie-bar button:hover {
  background-color: #45a049;
}

}
