/* CSS for YouTube cookie consent */
.page-embed_cookie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10;
}

.page-embed_cookie.hidden {
  display: none;
}

lite-youtube.hidden {
  display: none;
}

.yt-embed-cookie {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e0e0e0;
}

.page-embed_cookie-inner {
  background: white;
  padding: 30px;
  max-width: 600px;
  margin: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-embed_cookie-inner_text {
  display: block;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #333;
}

.yt-cookie-consent-button {
  background: #065fd4;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.yt-cookie-consent-button:hover {
  background: #0448a8;
}