.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: calc(var(--sidebar-width) + 15px);
  max-width: 400px;
  background-color: #fff;
  color: #000;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 0 7px 3px rgba(134, 134, 134, 0.3);
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  z-index: 9999;
}

.cookie-text a {
  color: #000;
  text-decoration: underline;
}

.cookie-btn {
  margin-top: 15px;
  padding: 8px 24px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-btn:hover {
  background-color: #222;
}