
.dashboard-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dashboard-category {
  margin-bottom: 2rem;
}

.dashboard-category h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  border-bottom: 2px solid #4285f4;
  padding-bottom: 0.5rem;
}

body.dark-mode .dashboard-category h3 {
  color: #fff;
}


.dashboard-item h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  color: #2c3e50;
}

body.dark-mode .dashboard-item h3 {
  color: #fff;
}

.dashboard-item p {
  color: #333;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

body.dark-mode .dashboard-item p {
  color: #ddd;
}


.pdf-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 1rem 0;
}

.pdf-container iframe {
  width: 100%;
  height: 600px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 100%;
  box-sizing: border-box;
}

body.dark-mode .pdf-container iframe {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Dashboard features */
.dashboard-features {
  color: inherit;
}

.invis {
  visibility: hidden;
  cursor: default;
}