/* Dashboard width and card spacing can be adjusted with --rahul-dashboard-width. */
.rahul-plugin-ui .rahul-dashboard-shell {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  width: min(100% - 24px, var(--rahul-dashboard-width));
  min-width: 0;
  margin: 30px auto;
  overflow: hidden;
  color: #edf6ff;
  border: 1px solid rgba(24, 201, 237, 0.24);
  border-radius: var(--rahul-radius-xl);
  background: linear-gradient(145deg, var(--rahul-night), var(--rahul-night-two) 64%, #0a162b);
  box-shadow: var(--rahul-shadow-large);
  animation: rahul-account-enter 240ms ease both;
}

.rahul-plugin-ui .rahul-dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.rahul-plugin-ui .rahul-dashboard-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 4px 16px;
  color: #ffffff;
}

.rahul-plugin-ui .rahul-dashboard-brand > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--rahul-violet), var(--rahul-blue), var(--rahul-cyan));
  font-size: 11px;
  font-weight: 900;
}

.rahul-plugin-ui .rahul-dashboard-nav > a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  color: #a9bbd0 !important;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 760;
  transition: color 190ms ease, background-color 190ms ease, border-color 190ms ease;
}

.rahul-plugin-ui .rahul-dashboard-nav > a:hover,
.rahul-plugin-ui .rahul-dashboard-nav > a.is-active {
  color: #ffffff !important;
  border-color: rgba(24, 201, 237, 0.18);
  background: rgba(24, 201, 237, 0.08);
}

.rahul-plugin-ui .rahul-dashboard-nav svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.rahul-plugin-ui .rahul-dashboard-main {
  min-width: 0;
  padding: 28px;
}

.rahul-plugin-ui .rahul-dashboard-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.rahul-plugin-ui .rahul-dashboard-hero h1 {
  margin: 12px 0 6px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.rahul-plugin-ui .rahul-dashboard-hero p {
  margin: 0;
  color: #9db0c7;
  font-size: 13px;
}

.rahul-plugin-ui .rahul-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 24px;
}

.rahul-plugin-ui .rahul-dashboard-stat {
  min-width: 0;
  min-height: 178px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 210ms ease, border-color 210ms ease, background-color 210ms ease;
}

.rahul-plugin-ui .rahul-dashboard-stat:hover {
  border-color: rgba(24, 201, 237, 0.26);
  background: rgba(24, 201, 237, 0.06);
  transform: translateY(-3px);
}

.rahul-plugin-ui .rahul-dashboard-stat-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 9px;
  color: #6ce8ff;
  border-radius: 13px;
  background: rgba(24, 201, 237, 0.10);
}

.rahul-plugin-ui .rahul-dashboard-stat-icon svg {
  width: 100%;
  height: 100%;
}

.rahul-plugin-ui .rahul-dashboard-stat small,
.rahul-plugin-ui .rahul-dashboard-stat strong {
  display: block;
}

.rahul-plugin-ui .rahul-dashboard-stat > small {
  margin-top: 15px;
  color: #8ea2bb;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rahul-plugin-ui .rahul-dashboard-stat strong {
  margin-top: 7px;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
}

.rahul-plugin-ui .rahul-dashboard-stat p {
  margin: 9px 0 0;
  color: #8297b2;
  font-size: 11px;
}

.rahul-plugin-ui .rahul-dashboard-progress {
  height: 8px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.rahul-plugin-ui .rahul-dashboard-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rahul-violet), var(--rahul-blue), var(--rahul-cyan));
}

.rahul-plugin-ui .rahul-dashboard-actions {
  margin-top: 22px;
}

.rahul-plugin-ui .rahul-dashboard-actions h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 17px;
}

.rahul-plugin-ui .rahul-dashboard-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rahul-plugin-ui .rahul-dashboard-action-grid > a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 15px;
  color: #e8f3ff !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.rahul-plugin-ui .rahul-dashboard-action-grid > a:hover {
  border-color: rgba(24, 201, 237, 0.28);
  background: rgba(24, 201, 237, 0.065);
  transform: translateY(-2px);
}

.rahul-plugin-ui .rahul-dashboard-action-grid svg {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  color: #6ce8ff;
}

.rahul-plugin-ui .rahul-dashboard-action-grid strong,
.rahul-plugin-ui .rahul-dashboard-action-grid small {
  display: block;
}

.rahul-plugin-ui .rahul-dashboard-action-grid small {
  margin-top: 4px;
  color: #8398b3;
  font-size: 11px;
}
