/* Disabled state styling for the export link */
.views-data-export-zip a.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  /* Optional: visually indicate no interaction */
  pointer-events: none; /* if you set this, clicks won't reach handler,
                           but we already block in JS; choose ONE approach */
}

/* Tooltip styles (як у вас уже було) */
.vde-zip-tooltip {
  position: absolute;
  z-index: 9999;
  pointer-events: auto; /* we need to click the close button */
  transform: translateY(-2px);
  padding: 0;
  opacity: 0;
  transition: opacity 120ms ease, transform 120ms ease;
}
.vde-zip-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.vde-zip-tooltip__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 420px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  font: 500 13px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.vde-zip-tooltip__text { flex: 1 1 auto; }
.vde-zip-tooltip__close {
  flex: 0 0 auto;
  appearance: none;
  border: none;
  background: transparent;
  color: #fff;
  opacity: 0.85;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 4px;
}
.vde-zip-tooltip__close:hover { opacity: 1; }

.view-statements .view-content .views-table td.views-field-nothing-1 span.export-button a {
  border: 2px solid #e0e322;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 3px;
  min-width: 57px;
  margin-left: 9px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.42857143;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
