.studio-app-screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #f7f9fc;
  color: #0f172a;
  font-family: "Plus Jakarta Sans", "Noto Sans SC", "Segoe UI", sans-serif;
}

.studio-app-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 0 18px;
  border-bottom: 1px solid #dbe4ef;
  background: #ffffff;
  color: #52637a;
  font-size: 10px;
  font-weight: 600;
}

.studio-app-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #52637a;
}

.studio-app-signal {
  width: 13px;
  height: 10px;
  background: linear-gradient(90deg, #52637a 0 2px, transparent 2px 4px, #52637a 4px 6px, transparent 6px 8px, #52637a 8px 10px, transparent 10px 11px, #52637a 11px 13px);
}

.studio-app-wifi {
  width: 12px;
  height: 8px;
  border: 1.5px solid #52637a;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  transform: translateY(-1px);
}

.studio-app-header {
  padding: 14px 18px 18px;
  border-bottom: 1px solid #dbe4ef;
  border-radius: 0;
  background: #ffffff;
  color: #0f172a;
}

.studio-app-header-top,
.studio-app-brand,
.studio-app-list-item {
  display: flex;
  align-items: center;
}

.studio-app-header-top {
  justify-content: space-between;
}

.studio-app-brand {
  gap: 8px;
}

.studio-app-brand-mark,
.studio-app-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.studio-app-avatar {
  width: 30px;
  height: 30px;
  border: 1px solid #dbe4ef;
  border-radius: 999px;
  background: #f8fafc;
  color: #52637a;
  font-size: 9px;
  letter-spacing: 0.02em;
}

.studio-app-avatar-icon {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
}

.studio-app-avatar-icon::before {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 3px;
  height: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
  content: "";
}

.studio-app-avatar-icon::after {
  position: absolute;
  right: 1px;
  bottom: 1px;
  left: 1px;
  height: 4px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
}

.studio-app-brand-name {
  color: #0f172a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.studio-app-header-title {
  display: block;
  margin-top: 18px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.studio-app-content {
  flex: 1 1 auto;
  display: grid;
  gap: 14px;
  min-height: 0;
  overflow: auto;
  padding: 18px 18px 28px;
  background: #f7f9fc;
}

.studio-app-bottom-nav {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 8px 8px 10px;
  border-top: 1px solid #dbe4ef;
  background: #ffffff;
}

.studio-app-bottom-nav-item {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 5px 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #94a3b8;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.studio-app-bottom-nav-item.is-active {
  background: #e8edff;
  color: #3559e6;
}

.studio-app-bottom-nav-item:hover {
  background: #f2f5ff;
  color: #3559e6;
}

.studio-app-bottom-nav-item:focus-visible {
  outline: 2px solid #3559e6;
  outline-offset: -2px;
}

.studio-app-bottom-nav-item.is-unavailable {
  cursor: not-allowed;
  opacity: 0.6;
}

.studio-app-bottom-nav-glyph {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  color: currentColor;
}

.studio-app-bottom-nav-glyph-home {
  border: 1.5px solid currentColor;
  border-top: 0;
  border-radius: 3px 3px 5px 5px;
}

.studio-app-bottom-nav-glyph-home::before {
  position: absolute;
  top: -4px;
  left: 1px;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.studio-app-bottom-nav-glyph-service::before {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 5px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  box-shadow: 8px 0 0 -1px #ffffff, 8px 0 0 0 currentColor, 0 8px 0 -1px #ffffff, 0 8px 0 0 currentColor, 8px 8px 0 -1px #ffffff, 8px 8px 0 0 currentColor;
  content: "";
}

.studio-app-bottom-nav-glyph-message {
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.studio-app-bottom-nav-glyph-message::after {
  position: absolute;
  right: 1px;
  bottom: -3px;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  background: #ffffff;
  content: "";
  transform: skewY(-30deg);
}

.studio-app-bottom-nav-glyph-profile::before {
  position: absolute;
  top: 0;
  left: 5px;
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  content: "";
}

.studio-app-bottom-nav-glyph-profile::after {
  position: absolute;
  bottom: 0;
  left: 2px;
  width: 12px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-radius: 8px 8px 3px 3px;
  content: "";
}

.studio-app-greeting,
.studio-app-eyebrow,
.studio-app-body-text,
.studio-app-section-title,
.studio-app-section-description,
.studio-app-card-title,
.studio-app-card-description,
.studio-app-card-meta,
.studio-app-card-action,
.studio-app-kpi-title,
.studio-app-kpi-value,
.studio-app-kpi-delta,
.studio-app-kpi-meta,
.studio-app-list-title,
.studio-app-list-subtitle,
.studio-app-list-meta,
.studio-app-list-status,
.studio-app-list-empty,
.studio-app-field-label {
  display: block;
}

.studio-app-greeting {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.studio-app-eyebrow {
  margin: 0;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.studio-app-body-text {
  margin: 0;
  color: #52637a;
  font-size: 13px;
  line-height: 1.6;
}

.studio-app-row {
  display: block;
  min-width: 0;
}

.studio-app-section-content {
  display: grid;
  gap: 12px;
  min-width: 0;
}
