.privacy-note {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 480px;
  width: calc(100% - 2rem);
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.9rem;
  border-radius: 4px;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  z-index: 9999;
  box-sizing: border-box;
}

.privacy-note span {
  flex: 1;
  line-height: 1.4;
}

.privacy-note button.privacy-note-close {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.25rem;
  flex-shrink: 0;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-note button.privacy-note-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .privacy-note {
    bottom: 0.5rem;
    width: calc(100% - 1rem);
    padding: 0.75rem;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .privacy-note span {
    font-size: 0.85rem;
  }

  .privacy-note button.privacy-note-close {
    font-size: 1.3rem;
    min-width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .privacy-note {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    transform: none;
    width: auto;
    padding: 0.65rem;
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .privacy-note span {
    font-size: 0.8rem;
  }

  .privacy-note button.privacy-note-close {
    font-size: 1.2rem;
    min-width: 26px;
    height: 26px;
  }
}
