.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  transform: none;
  background: rgba(0,0,0,0.3); /* şeffaf siyah */
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  max-width: 320px;
  width: auto;
  font-size: 13px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-banner p {
  margin: 0;
  line-height: 1.5;
}
.cookie-banner button {
  margin-right: 10px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
#cookie-accept { background: #28a745; color: #fff; }
#cookie-decline { background: #dc3545; color: #fff; }
.cookie-banner a { color: #4da6ff; text-decoration: underline; }




