.btn-google img {
  width: 18px;
  height: 18px;
}

.upload-drop {
  border: 2px dashed #bbb;
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  background: #fff;
}

.upload-drop:hover,
.upload-drop.drag-over {
  border-color: #0d6efd;
  background: #f0f5ff;
}

.upload-drop #upload-preview {
  max-height: 160px;
  max-width: 100%;
  border-radius: 4px;
  object-fit: contain;
}

.upload-url-text {
  word-break: break-all;
}

/* ── Tabulator modernization ── */
.tabulator {
  border: 1px solid #e0e0e0;
  border-radius: 0.375rem;
  overflow: hidden;
  font-size: 0.875rem;
}

.tabulator .tabulator-header {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
}

.tabulator .tabulator-header .tabulator-col {
  background-color: #f8f9fa;
  border-right: 1px solid #e9ecef;
  font-weight: 600;
  color: #495057;
}

.tabulator .tabulator-row {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.1s;
}

.tabulator .tabulator-row.tabulator-row-even {
  background-color: #fafafa;
}

.tabulator .tabulator-row:hover,
.tabulator .tabulator-row.tabulator-row-even:hover {
  background-color: #e8f0fe !important;
}

.tabulator .tabulator-cell {
  border-right: 1px solid #f0f0f0;
  padding: 6px 8px;
}
