

/* Hide WooCommerce default dashboard greeting message */
.woocommerce-MyAccount-content > p:first-of-type {
  display: none;
}

.woocommerce-MyAccount-content > p {
  display: none;
}

#content .page .entry-header {
    display: none;
}

.prodokan-dashboard {
  background: #FBFBFB;
  border: 1px solid #dddddd;
  padding: 30px;
  margin-bottom: 20px;
  font-family: "Segoe UI", sans-serif;
}
.prodokan-dashboard .dashboard-header h2 {
  color: #00cdc9;
  margin-bottom: 10px;
}
.prodokan-dashboard .dashboard-header p {
  color: #555;
  margin-bottom: 30px;
}
.dashboard-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.dashboard-card {
  background: #e7e7e7;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.dashboard-card:hover {
  transform: translateY(-5px);
}
.dashboard-card .icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.dashboard-card .label {
  font-weight: 600;
  font-size: 16px;
}
.dashboard-card .value {
  font-size: 24px;
  font-weight: bold;
  color: #00a3a3;
}
.dashboard-card a {
  color: inherit;
  text-decoration: none;
}
