#asp-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #ffffff;
  color: #333333;
  border-top: 3px solid #008eaa;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
}

#asp-cookie-banner .asp-cookie-text {
  flex: 1 1 320px;
  max-width: 720px;
}

#asp-cookie-banner .asp-cookie-text a {
  color: #008eaa;
  text-decoration: underline;
}

#asp-cookie-banner .asp-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.asp-cookie-btn {
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 14px;
  cursor: pointer;
}

.asp-cookie-btn.asp-cookie-accept {
  background: #008eaa;
  color: #ffffff;
}

.asp-cookie-btn.asp-cookie-accept:hover {
  background: #006c82;
}

.asp-cookie-btn.asp-cookie-refuse {
  background: #f0f0f0;
  color: #333333;
}

.asp-cookie-btn.asp-cookie-refuse:hover {
  background: #e2e2e2;
}

#asp-cookie-reopen {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 99998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #e35205;
  color: #ffffff;
  font-size: 20px;
  line-height: 44px;
  text-align: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

#asp-cookie-reopen:hover {
  background: #c8460a;
}

@media (max-width: 640px) {
  #asp-cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  #asp-cookie-banner .asp-cookie-actions {
    justify-content: flex-end;
  }
}
