/* -----------------------------------------------------------
   SLV THEME — MY ACCOUNT DASHBOARD (UPGRADED)
----------------------------------------------------------- */

.wa-account-dashboard {
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.wa-dashboard-title {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  margin-bottom: 25px;
  text-align: left;
}

/* Grid Layout */
.wa-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* Card Base */
.wa-card {
  all: unset;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f7f7f7;                 /* SLV background */
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #cccccc;           /* SLV border */
  cursor: pointer;
  text-decoration: none;
  color: #111;                         /* SLV text */
  transition: all 0.25s ease;
}

/* Hover */
.wa-card:hover {
  border-color: #e0e0e0;               /* SLV hover border */
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transform: translateY(-2px);         /* SLV hover lift */
}

/* Icon */
.wa-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* Title */
.wa-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

/* Description */
.wa-card-desc {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.4;
}
