/**
 * Zone Block Styles
 * 
 * Auto-enqueued by Blockstudio when the block is present on a page
 */
.tk-zone--empty {
  border: 2px dashed var(--wp--preset--color--secondary, #ccc);
  border-radius: 4px;
  background-color: var(--wp--preset--color--bg-secondary, #f5f5f5);
  padding: var(--wp--preset--spacing--40, 2rem);
  color: var(--wp--preset--color--text-secondary, #666);
  text-align: center;
}
.tk-zone--empty p {
  margin-bottom: 1rem;
}

.tk-zone--error {
  border: 2px solid var(--wp--preset--color--error, #dc3545);
  border-radius: 4px;
  background-color: var(--wp--preset--color--error-bg, #fff5f5);
  padding: var(--wp--preset--spacing--40, 2rem);
  color: var(--wp--preset--color--error-text, #721c24);
}
.tk-zone--error strong {
  display: block;
  margin-bottom: 0.5rem;
}

.tk-zone-edit-button {
  transition: background 0.2s ease, transform 0.1s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 4px;
  background: #000;
  padding: 8px 12px;
  width: max-content;
  pointer-events: auto;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.tk-zone-edit-button:hover {
  transform: translateY(-1px);
  background: #333;
}
.tk-zone-edit-button:active {
  transform: translateY(0);
}

.tk-create-zone-button {
  transition: background 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  background: var(--wp--preset--color--primary, #007bff);
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.tk-create-zone-button:hover:not(:disabled) {
  background: var(--wp--preset--color--primary-hover, #0056b3);
}
.tk-create-zone-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.wp-block-post-content > .tk-zone {
  width: 100%;
  max-width: 100%;
}