/* Custom instance root landing page */
body.jtp-root {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f4f5f7;
  color: #1d2025;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  box-sizing: border-box;
}
html[data-jtp-theme="dark"] body.jtp-root {
  background: #1b1d21;
  color: #e6e8eb;
}

.jtp-root-wrap {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  border: 1px solid #e2e5e9;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 36px 32px;
  box-sizing: border-box;
}
html[data-jtp-theme="dark"] .jtp-root-wrap {
  background: #24272c;
  border-color: #3a3f46;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.jtp-root-head { text-align: center; margin-bottom: 28px; }
.jtp-root-brand { margin: 0; font-size: 30px; font-weight: 700; letter-spacing: 0.5px; }
.jtp-root-tag { margin: 6px 0 0; color: #8a9099; font-size: 14px; }

.jtp-root-h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8a9099;
  margin: 0 0 12px;
}

.jtp-org-list { list-style: none; margin: 0; padding: 0; }
.jtp-org { margin: 0 0 10px; }
.jtp-org a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid #e2e5e9;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.jtp-org a:hover { border-color: #5aa9ff; background: #f7fbff; transform: translateY(-1px); }
html[data-jtp-theme="dark"] .jtp-org a { border-color: #3a3f46; }
html[data-jtp-theme="dark"] .jtp-org a:hover { border-color: #5aa9ff; background: #2d3137; }
.jtp-org-name { font-weight: 600; font-size: 16px; }
.jtp-org-go { color: #5aa9ff; font-size: 14px; white-space: nowrap; margin-left: 12px; }

.jtp-root-empty { text-align: center; color: #8a9099; padding: 20px 0; }

.jtp-root-foot { text-align: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid #e2e5e9; }
html[data-jtp-theme="dark"] .jtp-root-foot { border-top-color: #3a3f46; }
.jtp-admin-link {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  background: #2d6cdf;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.jtp-admin-link:hover { background: #1f59c2; }
