
/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  display: none;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  max-width: 450px;
  font-family: 'Arial', sans-serif;
  z-index: 9999;
  
}

#cookie-banner h3 {
  font-size: 18px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
}

#cookie-banner p {
  font-size: 14px;
  margin-bottom: 15px;
}

#cookie-banner-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

#cookie-banner-close svg {
  width: 20px;
  height: 20px;
}

.cookie-content .note {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.cookie-content .note a {
  color: white;
}

#cookie-options {
  display: none;
  font-size: 14px;
}

#cookie-options label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
}

#cookie-options input {
  margin-right: 10px;
}

.cookie-buttons {
  text-align: right;
  margin-top: 10px;
}

.cookie-buttons .btn-accept,
.cookie-buttons .btn-reject,
.cookie-buttons #showPreferences,
.cookie-buttons #savePreferences {
  font-size: 14px;
  padding: 8px 15px;
  margin-left: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-accept {
  background-color: #4CAF50;
  color: white;
}

.btn-reject {
  background-color: #f44336;
  color: white;
}

#showPreferences, #savePreferences {
  border: 1px solid #4CAF50;
  color: #4CAF50;
}

#savePreferences {
  display: none;
}


/* YOUTUBE PLACEHOLDER */
.yt-placeholder {
  position: relative;
  width: 100%;
  max-height: 675px;
  margin: 20px auto;
  background: #000;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.yt-placeholder .yt-overlay {
  padding: 60px 10px;
}

.yt-placeholder p {
  margin: 0 0 10px 0;
  font-size: 14px;
}

.yt-placeholder .btn-play {
  background-color: #FF0000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.yt-placeholder .btn-play:hover {
  background-color: #cc0000;
}

/* Responsive */
@media(max-width:600px){
  #cookie-banner {
    max-width: 90%;
    padding: 15px 20px;
  }
  .yt-placeholder {
    width: 90%;
  }
}
</style>
