.dashboard-mvp-main {
  padding-bottom: 4rem;
}

.dashboard-mvp-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e5e9ef;
}

.dashboard-loading {
  display: none !important;
  min-height: 0;
  align-items: center;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: var(--muted-text);
  font-weight: 700;
}

.dashboard-error-icon {
  color: #bf3428;
}

.dashboard-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid #e1e6ed;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(22, 34, 54, .07);
}

.dashboard-secondary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: 0;
  overflow: hidden;
  margin-top: 1.15rem;
  border: 1px solid #e1e6ed;
  border-radius: 22px;
  background: #fff;
}

.dashboard-focus-card,
.dashboard-files-panel,
.connected-body-inbox {
  min-width: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.dashboard-focus-card + .dashboard-focus-card,
.connected-body-inbox {
  border-left: 1px solid #e8ecf1;
}

.dashboard-focus-card {
  padding: 1.45rem;
}

.dashboard-files-panel,
.connected-body-inbox {
  padding: 1.25rem 1.4rem;
}

.dashboard-panel-header {
  align-items: flex-start;
}

.dashboard-panel-header h2 {
  margin: .05rem 0 0;
  font-size: 1.25rem;
}

.dashboard-panel-header a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}

.dashboard-feature-content {
  margin-top: .75rem;
}

.dashboard-next-meeting {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 190px;
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid #f0e1d2;
  background: linear-gradient(145deg, #fffaf5, #fff);
  color: inherit;
  text-decoration: none;
}

.dashboard-next-meeting:hover {
  border-color: #ffc37e;
  transform: translateY(-1px);
}

.dashboard-meeting-date {
  width: 72px;
  height: 82px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-radius: 16px;
  background: #4f5052;
  color: #fff;
}

.dashboard-meeting-date span {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-meeting-date strong {
  font-size: 2rem;
  line-height: 1;
}

.dashboard-meeting-copy h3 {
  margin: .7rem 0 .55rem;
  font-size: 1.22rem;
}

.dashboard-meeting-copy p {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: .25rem 0;
  color: var(--muted-text);
}

.dashboard-meeting-copy svg {
  width: 16px;
  height: 16px;
}

.dashboard-task-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: .8rem 0;
  overflow: hidden;
  border: 1px solid #e7ebf0;
  border-radius: 14px;
}

.dashboard-task-summary div {
  padding: .75rem .85rem;
  background: #f8fafc;
}

.dashboard-task-summary div + div {
  border-left: 1px solid #e7ebf0;
}

.dashboard-task-summary strong,
.dashboard-task-summary span {
  display: block;
}

.dashboard-task-summary strong {
  font-size: 1.45rem;
  color: #17243b;
}

.dashboard-task-summary span {
  margin-top: .15rem;
  color: #6a7890;
  font-size: .76rem;
  font-weight: 750;
}

.dashboard-list {
  display: grid;
  gap: .25rem;
}

.dashboard-list-row {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
  padding: .72rem .25rem;
  border: 0;
  border-bottom: 1px solid #edf0f4;
  background: transparent;
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.dashboard-list-row:last-child {
  border-bottom: 0;
}

.dashboard-list-row:hover {
  background: #fafbfc;
}

.dashboard-list-row.is-overdue .dashboard-row-date {
  color: #bd3128;
}

.dashboard-row-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f1f4f8;
  color: #64728a;
}

.dashboard-row-copy {
  min-width: 0;
}

.dashboard-row-copy strong,
.dashboard-row-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-row-copy strong {
  color: #1a2740;
}

.dashboard-row-copy small {
  margin-top: .15rem;
  color: #718097;
}

.dashboard-row-date {
  color: #69778e;
  font-size: .8rem;
  font-weight: 750;
  white-space: nowrap;
}

.dashboard-empty-row,
.dashboard-empty-compact {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--muted-text);
}

.dashboard-empty-row {
  padding: 1rem .25rem;
}

.dashboard-empty-row > svg,
.dashboard-empty-compact > svg {
  color: #8b98aa;
}

.dashboard-empty-row strong,
.dashboard-empty-row small {
  display: block;
}

.dashboard-empty-row small {
  margin-top: .2rem;
}

.dashboard-empty-compact {
  min-height: 180px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.dashboard-empty-compact p {
  max-width: 330px;
  margin: 0;
}

.connected-body-inbox {
  position: relative;
}

.connected-body-identity {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .8rem 0 1rem;
  border-bottom: 1px solid #edf0f4;
}

.connected-body-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  background: #fff2e3;
  border: 1px solid #ffd1a2;
  color: #ef7910;
  font-weight: 850;
}

.connected-body-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.connected-body-identity small,
.connected-body-identity strong,
.connected-body-identity p {
  display: block;
}

.connected-body-identity small {
  color: #7b879b;
  font-weight: 750;
}

.connected-body-identity strong {
  margin-top: .1rem;
  color: #18263e;
  font-size: 1rem;
}

.connected-body-identity p {
  margin: .2rem 0 0;
  color: #6a7890;
  font-size: .86rem;
}

.connected-body-inbox-list {
  display: grid;
  margin-top: .45rem;
}

.connected-notice-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .7rem;
  align-items: center;
  padding: .72rem .15rem;
  border-bottom: 1px solid #edf0f4;
  color: inherit;
  text-decoration: none;
}

.connected-notice-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #f3f5f8;
  color: #65738a;
}

.connected-notice-icon.alert,
.connected-notice-icon.deadline {
  background: #fff0e4;
  color: #e66f0b;
}

.connected-notice-copy {
  min-width: 0;
}

.connected-notice-copy > span {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.connected-notice-copy strong,
.connected-notice-copy small,
.connected-notice-copy em {
  display: block;
}

.connected-notice-copy strong,
.connected-notice-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
}

.connected-notice-copy small {
  margin-top: .2rem;
  color: #66758d;
}

.connected-notice-copy em {
  margin-top: .25rem;
  color: #8a95a6;
  font-size: .72rem;
  font-style: normal;
}

.connected-unread-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ef7e13;
}

.connected-body-empty {
  min-height: 185px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  text-align: center;
  color: #748197;
}

.connected-body-empty p {
  max-width: 330px;
  margin: 0;
}

.connected-body-empty.is-connected svg {
  color: #2aa66d;
}

.connected-body-footer {
  padding-top: .75rem;
  border-top: 1px solid #edf0f4;
}

.connected-body-footer p {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  margin: 0;
  color: #7a8698;
  font-size: .76rem;
}

.dashboard-quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 1.15rem;
  overflow: hidden;
  border: 1px solid #e1e6ed;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
}

.dashboard-quick-links > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .7rem;
  align-items: center;
  padding: .85rem 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
}

.dashboard-quick-links > a + a {
  border-left: 1px solid #e7ebf0;
}

.dashboard-quick-links > a:hover {
  background: #fff8f0;
}

.dashboard-quick-links > a > span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff2e5;
  color: #ed7810;
}

.dashboard-quick-links strong,
.dashboard-quick-links small {
  display: block;
}

.dashboard-quick-links small {
  margin-top: .12rem;
  color: #748197;
}

@media (max-width: 1120px) {
  .dashboard-focus-grid,
  .dashboard-secondary-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-quick-links {
    grid-template-columns: 1fr;
  }

  .dashboard-focus-card + .dashboard-focus-card,
  .connected-body-inbox,
  .dashboard-quick-links > a + a {
    border-left: 0;
    border-top: 1px solid #e8ecf1;
  }
}

@media (max-width: 650px) {
  .dashboard-mvp-header .topbar-actions {
    width: 100%;
  }

  .dashboard-mvp-header .topbar-actions a {
    flex: 1;
    justify-content: center;
  }

  .dashboard-next-meeting {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .dashboard-next-meeting > svg {
    display: none;
  }

  .dashboard-meeting-date {
    width: 60px;
    height: 70px;
  }

  .dashboard-task-summary {
    gap: .35rem;
  }

  .dashboard-task-summary div {
    padding: .7rem .55rem;
  }
}
