.app-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.app-section-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.app-search-card,
.app-content-card {
  background: var(--app-color-surface);
  border: 0;
  border-radius: var(--app-radius-md);
  box-shadow: var(--app-shadow-sm);
}

.app-form-label {
  margin-bottom: 0.375rem;
  color: var(--app-color-text-muted);
  font-size: var(--app-text-xs);
  font-weight: 600;
  letter-spacing: var(--app-tracking-wide);
}

.app-data-table { margin-bottom: 0; }
.app-data-table thead { background-color: #f8f9fa; }
.app-data-table th {
  color: var(--app-color-text-muted);
  font-size: var(--app-text-xs);
  letter-spacing: var(--app-tracking-wide);
  white-space: nowrap;
}
.app-data-table td {
  padding: 0.625rem 1rem;
  color: #212529;
  font-size: var(--app-text-sm);
  vertical-align: middle;
  border-bottom: 1px solid var(--app-color-border);
}
.app-data-table tbody tr:hover { background-color: #fff; }

.app-data-table .col-number { width: 5rem; }
.app-data-table .col-date { width: 9.375rem; }
.app-data-table .col-status { width: 7.5rem; }
.app-data-table .col-actions { width: 10rem; }

.app-pagination .page-link {
  color: var(--app-color-primary);
  border-color: var(--app-color-border);
}
.app-pagination .page-item.active .page-link {
  color: #fff;
  background-color: var(--app-color-primary);
  border-color: var(--app-color-primary);
}

.app-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-width: 4.2rem;
  font-size: var(--app-text-xs);
  font-weight: 600;
  white-space: nowrap;
}
.app-status-badge::before {
  display: inline-block;
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}
.app-status-info { color: #1e40af; background: #dbeafe; }
.app-status-approve { color: #5b21b6; background: #ede9fe; }
.app-status-success { color: #065f46; background: #d1fae5; }
.app-status-warning { color: #92400e; background: #fef3c7; }
.app-status-danger { color: #991b1b; background: #fee2e2; }
.app-status-primary { color: var(--app-color-primary); background: #fff; border: 1px solid rgba(0, 28, 84, 0.2); }
.app-status-muted { color: #475569; background: #e2e8f0; }

.app-empty-state {
  padding: 3rem 1rem;
  color: var(--app-color-text-muted);
  text-align: center;
}
.app-empty-state-icon {
  font-size: 48px !important;
  opacity: 0.3;
}

.app-modal { border-radius: var(--app-radius-lg); }
.app-overlay-blur { backdrop-filter: blur(4px); }
.app-facility-image-frame {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: #f1f5f9;
}
.app-facility-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}
.app-image-grid-item { min-height: 120px; cursor: pointer; }
.app-image-overlay { pointer-events: none; opacity: 0; transition: opacity 0.3s ease; z-index: 5; }
.app-image-overlay button { pointer-events: auto; }
.app-image-preview-item:hover .app-image-overlay { opacity: 1; }
.app-file-drop-zone { transition: background-color 0.15s ease, border-color 0.15s ease; }
.app-file-drop-zone.is-dragover { background-color: #e7f1ff !important; border-color: var(--app-color-primary) !important; }
.app-attachment-item { transition: background-color 0.2s; }
.app-attachment-item:hover { background-color: #f8f9fa; }

.app-terms-scroll {
  max-height: 300px;
  overflow-y: auto;
  font-size: var(--app-text-sm);
  line-height: 1.6;
}

/* 게시글 이미지 및 첨부파일 편집 공통 스타일 */
.image-item {
        cursor: pointer;
      }
      .image-overlay {
        pointer-events: none;
      }
      .image-overlay button {
        pointer-events: auto;
      }
      .attachment-item {
        transition: background-color 0.2s;
      }
      .attachment-item:hover {
        background-color: #f8f9fa;
      }
