/* Silktide Cookie Consent Manager CSS */
.silktide-cookiebanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  z-index: 10000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-top: 2px solid #00ff88;
}

.silktide-cookiebanner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.silktide-cookiebanner-text {
  flex: 1;
  min-width: 300px;
}

.silktide-cookiebanner-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.silktide-cookiebanner-text a {
  color: #00ff88;
  text-decoration: underline;
}

.silktide-cookiebanner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.silktide-cookiebanner-button {
  padding: 8px 16px;
  border: 1px solid #00ff88;
  background: transparent;
  color: #00ff88;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.silktide-cookiebanner-button:hover {
  background: #00ff88;
  color: black;
}

.silktide-cookiebanner-button.accept-all {
  background: #00ff88;
  color: black;
}

.silktide-cookiebanner-button.accept-all:hover {
  background: transparent;
  color: #00ff88;
}

.silktide-preferences-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.silktide-preferences-content {
  background: #111;
  border: 2px solid #00ff88;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  color: white;
}

.silktide-preferences-title {
  color: #00ff88;
  margin-bottom: 20px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.silktide-cookie-type {
  margin-bottom: 25px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.silktide-cookie-type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.silktide-cookie-type-name {
  font-weight: bold;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.silktide-toggle {
  position: relative;
  width: 50px;
  height: 24px;
  background: #333;
  border: 1px solid #555;
  cursor: pointer;
  transition: background 0.3s ease;
}

.silktide-toggle.enabled {
  background: #00ff88;
}

.silktide-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.silktide-toggle-handle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: white;
  transition: transform 0.3s ease;
}

.silktide-toggle.enabled .silktide-toggle-handle {
  transform: translateX(24px);
}

.silktide-cookie-type-description {
  font-size: 13px;
  line-height: 1.4;
  color: #ccc;
}

.silktide-preferences-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.silktide-preferences-button {
  padding: 10px 20px;
  border: 1px solid #00ff88;
  background: transparent;
  color: #00ff88;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.silktide-preferences-button:hover {
  background: #00ff88;
  color: black;
}

.silktide-preferences-button.save {
  background: #00ff88;
  color: black;
}

.silktide-preferences-button.save:hover {
  background: transparent;
  color: #00ff88;
}

.silktide-cookie-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #00ff88;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  font-size: 24px;
  transition: all 0.3s ease;
}

.silktide-cookie-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .silktide-cookiebanner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .silktide-cookiebanner-text {
    min-width: auto;
    margin-bottom: 15px;
  }
  
  .silktide-cookiebanner-buttons {
    justify-content: center;
  }
  
  .silktide-preferences-content {
    padding: 20px;
  }
  
  .silktide-preferences-buttons {
    flex-direction: column;
  }
  
  .silktide-cookie-icon {
    bottom: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}