/* public/css/export.css - Export UI component styles */

.export-card {
  background: var(--bg-elev, #fafafa);
  border: 1px solid var(--line, #e5e5e5);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.export-header {
  margin-bottom: 20px;
}

.export-header h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--text-primary, #1a1a1a);
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.export-header p {
  font-size: 13px;
  margin: 0;
  color: var(--text-secondary, #666);
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.4;
}

.export-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
}

.export-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  border: 1px solid var(--line, #e5e5e5);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary, #1a1a1a);
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: all 200ms ease;
}

.export-btn:hover {
  background: var(--bg-interactive, #f5f5f5);
  border-color: var(--gold, #C9A227);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.export-btn:active {
  transform: scale(0.98);
}

.export-icon {
  font-size: 20px;
  display: block;
  height: 20px;
  line-height: 20px;
}

.export-label {
  display: block;
  white-space: nowrap;
}

/* Format-specific accent colors */
.export-btn--csv:hover {
  border-color: var(--gold, #C9A227);
}

.export-btn--json:hover {
  border-color: var(--gold, #C9A227);
}

.export-btn--md:hover {
  border-color: var(--gold, #C9A227);
}

.export-btn--pdf:hover {
  border-color: var(--alert, #e74c3c);
}

/* Responsive */
@media (max-width: 480px) {
  .export-card {
    padding: 16px;
  }

  .export-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .export-btn {
    padding: 12px 8px;
    font-size: 11px;
  }

  .export-icon {
    font-size: 18px;
  }
}
