body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f6f8;
  padding: 30px;  
}

h1 {
  text-align: center;
  margin-bottom: 50px;
  color: #64748B;
}

.role-section {
  margin-bottom: 50px;
}

.role-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0d27a5a9;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 1200px;
  margin: auto;
}

.dashboard-grid-1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1400px;
  margin: auto;
}

.dashboard-card {
  text-decoration: none;
  background: white;
  border-radius: 16px;
  padding: 18px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0078d4;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.dashboard-card:hover {
  background: #0078d4;
  color: white;
  transform: translateY(-6px);
}

.icon {
  width: 34px;
  height: 34px;
  margin-bottom: 5px;
  /* Force visibility */
  color: #0078d4;
  fill: none;
  stroke: #0078d4;
  stroke-width: 2;
  display: block;
}

.dashboard-card:hover .icon {
      transform: scale(1.15);
      filter: brightness(0) invert(1);
}

.dashboard-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(0,0,0,0.12);
}

.dashboard-card:hover .icon {
  color: #005a9e;
}

.dashboard-card p {
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 6px;
  line-height: 1.3;
  color: #64748B;
}

.dashboard-card:hover p {
  color: #e5e7eb;
}

.dashboard-card h3 {
  margin: 6px 0 4px;
}

#roleTitle {
  margin-bottom: 50px;
  color: darkcyan;
  text-align: center;
  font-size: 1.8em;
}

/* Responsive */
@media (max-width: 1900px) {
  .dashboard-card {
    max-height: 200px;
  }
}

@media (max-width: 1200px) {
  .dashboard-grid-1 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .dashboard-grid-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dashboard-grid-1 {
    grid-template-columns: 1fr;
  }
}

.dashboard-card-1 {
  text-decoration: none;
  background: white;
  border-radius: 16px;
  padding: 18px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0078d4;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.dashboard-card-1:hover {
  background: #0078d4;
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(0,0,0,0.12);
}

.dashboard-card-1:hover .icon {
    transform: scale(1.15);
    filter: brightness(0) invert(1);
    color: #005a9e;
}

.dashboard-card-1 {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.dashboard-card-1 p {
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 8px;
  line-height: 1.3;
  color: #64748B;
}

.dashboard-card-1:hover p {
  color: #e5e7eb;
}

.dashboard-card-1 h3 {
  margin: 8px 0 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}