/*
  Custom Cookie Consent Overrides for Edititan
  Hides the floating cookie icon and adds mobile optimizations
*/

/* Hide the floating cookie icon completely */
#silktide-cookie-icon {
  display: none !important;
}

/* Mobile optimizations - make banner fullscreen on small devices */
@media (max-width: 768px) {
  #silktide-banner {
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
}

/* Ensure buttons are easily tappable on mobile */
@media (max-width: 768px) {
  #silktide-wrapper .st-button {
    padding: 12px 20px !important;
    font-size: 16px !important;
    min-height: 44px !important; /* iOS accessibility guideline */
  }
}
