/* Independent pendant main titlebar (3rd column, above page content) */
.rt-mainbar--pendant {
  padding: 0;
  min-height: 56px;
  height: 56px;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.rt-mainbar__inner-pendant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  height: 56px;
  width: 100%;

  /* Match project titlebar feel */
  background: var(--grad-primary);
  border: 1px solid rgba(230,238,245,.14);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  border-radius: 16px;
  backdrop-filter: blur(14px);

  padding: 10px 12px;
  box-sizing: border-box;
}

.rt-mainbar__content-pendant {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  width: 100%;
  color: var(--title-color, rgba(255,255,255,0.96));
}

.rt-mainbar__inner-pendant.is-empty {
  min-height: 56px;
  height: 56px;
}

.rt-mainbar__title-wrap {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.rt-mainbar__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--title-color, rgba(255,255,255,0.96));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: .01em;
}

.rt-mainbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.rt-mainbar__action {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .rt-mainbar--pendant {
    min-height: 56px;
    height: 56px;
  }
  .rt-mainbar__inner-pendant {
    min-height: 56px;
    height: 56px;
    padding: 10px 12px;
    border-radius: 16px;
  }
  .rt-mainbar__title {
    font-size: .95rem;
  }
}


.rt-mainbar__note {
  display: inline-block;
  max-width: min(48vw, 420px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .86rem;
  line-height: 1.1;
  color: rgba(255,255,255,.88);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
}
