.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* view-toggle은 app.css에서 통일된 스타일 사용 */

.creative-table .creative-name {
  font-weight: 600;
  color: var(--text-strong);
}

.creative-table .creative-name small {
  display: block;
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 4px;
}

.creative-table .link-cell a {
  color: var(--brand);
  text-decoration: underline;
  font-size: 13px;
  word-break: break-all;
}

.status-pill[data-status="띠배너"] {
  background: rgba(59, 130, 246, 0.18);
  color: #2563eb;
}

.status-pill[data-status="전면"] {
  background: rgba(99, 102, 241, 0.18);
  color: #6366f1;
}

.status-pill[data-status="네이티브"] {
  background: rgba(16, 185, 129, 0.18);
  color: #10b981;
}

.status-pill[data-status="영상"] {
  background: rgba(244, 114, 182, 0.18);
  color: #db2777;
}

/* 이미지 툴팁 스타일 */
.creative-image-tooltip {
  position: absolute;
  z-index: 10000;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px;
  pointer-events: none;
  max-width: 400px;
  max-height: 400px;
}

.creative-image-tooltip img {
  display: block;
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  border-radius: 4px;
}

.creative-image-tooltip .tooltip-arrow {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.creative-image-tooltip .tooltip-arrow::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ddd;
}

/* 앨범 보기 스타일 - app.css에서 통일된 스타일 사용 */
