/**
 * GMP Areas of Life Redesign v1.0.0
 * 2-column grid card layout with progress bars and question counts
 */

/* Only on dashboard (template-plan) */
body.template-plan .areas-of-life {
  background: #f7f7f8 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 28px 24px !important;
  border-radius: 16px !important;
}

body.template-plan .areas-of-life .areas-of-life__title {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
}

/* Grid container for area items */
body.template-plan .areas-of-life .aol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  body.template-plan .areas-of-life .aol-grid {
    grid-template-columns: 1fr;
  }
}

/* Hide original area items (JS will create new cards) */
body.template-plan .areas-of-life .area-of-life {
  display: none !important;
}

/* New area cards */
body.template-plan .aol-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

body.template-plan .aol-card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-color: #d0d0d0;
}

/* Emoji circle */
body.template-plan .aol-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

body.template-plan .aol-card__icon img {
  width: 24px;
  height: 24px;
}

/* Icon background colors per area */
body.template-plan .aol-card--health .aol-card__icon { background: #fde8e8; }
body.template-plan .aol-card--wealth .aol-card__icon { background: #e0f0ff; }
body.template-plan .aol-card--wisdom .aol-card__icon { background: #fff9e0; }
body.template-plan .aol-card--business .aol-card__icon { background: #f0e8e0; }
body.template-plan .aol-card--relationship .aol-card__icon { background: #fce8f0; }
body.template-plan .aol-card--social .aol-card__icon { background: #e8e8ff; }
body.template-plan .aol-card--sprituality .aol-card__icon { background: #fff4e0; }
body.template-plan .aol-card--life .aol-card__icon { background: #e8f4e8; }

/* Content area */
body.template-plan .aol-card__content {
  flex: 1;
  min-width: 0;
}

body.template-plan .aol-card__title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

/* Progress bar track */
body.template-plan .aol-card__bar-track {
  width: 100%;
  height: 3px;
  background: #ebebeb;
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}

body.template-plan .aol-card__bar-fill {
  height: 100%;
  border-radius: 2px;
  background: #00d4ff;
  transition: width 0.4s ease;
}

/* Subtitle */
body.template-plan .aol-card__subtitle {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.3;
}