/* ══ EMPTY STATE ══ */
/* Shown when no file is loaded in an app */

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 48px;
  min-height: 100%;
  position: relative;
}

.empty-state.hidden {
  display: none;
}

.empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-icon .ti {
  font-size: 40px;
  color: var(--accent);
}

.empty-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-900);
}

.empty-text {
  font-size: 13px;
  color: var(--grey-500);
  max-width: 300px;
  line-height: 1.5;
}

.empty-footer {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
}

.empty-desc {
  font-size: 12px;
  color: var(--grey-500);
  margin-bottom: 12px;
}

.empty-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: 11px;
  color: var(--grey-500);
}

.empty-badges .ti {
  font-size: 14px;
  vertical-align: -2px;
}
