.elementor-2306 .elementor-element.elementor-element-10be597{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-4b4f4c8 *//* ========================================
   GGM DASHBOARD — FULL CSS
   ======================================== */

/* Reset dashboard page */
body.page-template-elementor_canvas #ggm-dash,
#ggm-dash {
  display: flex;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: #f4f7f6;
  color: #1a1a1a;
  position: relative;
}

/* ── SIDEBAR ── */
.ggm-sidebar {
  width: 240px;
  min-width: 240px;
  background: #ffffff;
  border-right: 1px solid #e8f0ec;
  display: flex;
  flex-direction: column;
  padding: 28px 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
  box-shadow: 2px 0 12px rgba(0,0,0,0.04);
}

.ggm-logo {
  padding: 0 24px 28px;
  border-bottom: 1px solid #e8f0ec;
  margin-bottom: 16px;
}

.ggm-logo img {
  max-width: 140px;
  height: auto;
}

.ggm-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
}

.ggm-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #555;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.ggm-nav-item:hover {
  background: #f0faf5;
  color: #0e9e6e;
  text-decoration: none;
}

.ggm-nav-item.active {
  background: #0e9e6e;
  color: #ffffff;
}

.ggm-nav-item .dashicons {
  font-size: 18px;
  width: 20px;
  height: 20px;
}

.ggm-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  color: #e05555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #e8f0ec;
  margin-top: 12px;
  transition: all 0.2s;
}

.ggm-logout:hover {
  color: #c03030;
  text-decoration: none;
}

/* ── MAIN CONTENT ── */
.ggm-main {
  margin-left: 240px;
  flex: 1;
  padding: 36px 40px;
  min-height: 100vh;
  padding-bottom: 40px;
}

/* ── TABS ── */
.ggm-tab {
  display: none;
}

.ggm-tab.active {
  display: block;
}

/* ── SECTION TITLE ── */
.ggm-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8f0ec;
}

/* ── WELCOME BLOCK ── */
.ggm-welcome {
  background: linear-gradient(135deg, #0e9e6e 0%, #07c98b 100%);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 28px;
  color: white;
}

.ggm-welcome h2 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0 0 6px;
}

.ggm-welcome p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* ── COURSE CARDS ── */
.ggm-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 360px;
  margin-bottom: 20px;
}

.ggm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.11);
}

.ggm-card-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ggm-card-thumb-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #0e9e6e, #07c98b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
}

.ggm-card-body {
  padding: 18px 20px 20px;
}

.ggm-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.ggm-card-desc {
  font-size: 13px;
  color: #666;
  margin: 0 0 16px;
  line-height: 1.5;
}

.ggm-card-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.ggm-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ggm-btn {
  display: inline-block;
  background: #0e9e6e;
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.ggm-btn:hover {
  background: #0b8a5e;
  color: white;
  text-decoration: none;
}

/* Cards grid for free workshops */
.ggm-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ── PROFILE SECTION ── */
.ggm-profile-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.ggm-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0e9e6e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ggm-profile-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ggm-profile-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ggm-profile-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  font-weight: 600;
}

.ggm-profile-value {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
}

/* ── BOTTOM NAV (mobile only) ── */
.ggm-bottom-nav {
  display: none;
}

/* ── NO CONTENT STATE ── */
.ggm-empty {
  text-align: center;
  padding: 48px 24px;
  color: #888;
}

.ggm-empty .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
  color: #ccc;
  margin-bottom: 12px;
}

/* ==============================
   MOBILE — max 768px
   ============================== */
@media (max-width: 768px) {
  #ggm-dash {
    flex-direction: column;
  }

  .ggm-sidebar {
    display: none;
  }

  .ggm-main {
    margin-left: 0;
    padding: 20px 16px 80px;
  }

  .ggm-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e8f0ec;
    z-index: 200;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  }

  .ggm-bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 8px;
    color: #888;
    text-decoration: none;
    font-size: 11px;
    gap: 3px;
    transition: color 0.2s;
  }

  .ggm-bn-item.active {
    color: #0e9e6e;
  }

  .ggm-bn-item .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
  }

  .ggm-bn-item label {
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
  }

  .ggm-cards-grid {
    grid-template-columns: 1fr;
  }

  .ggm-card {
    max-width: 100%;
  }

  .ggm-welcome {
    padding: 20px;
  }

  .ggm-welcome h2 {
    font-size: 20px;
  }
}

/* Subsection titles */
.ggm-subsection-title {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 16px;
  padding-left: 4px;
}

/* Locked card */
.ggm-card-locked .ggm-card-thumb-placeholder {
  background: linear-gradient(135deg, #888, #aaa);
}

/* Outline button */
.ggm-btn-outline {
  background: transparent;
  border: 2px solid #0e9e6e;
  color: #0e9e6e;
}
.ggm-btn-outline:hover {
  background: #0e9e6e;
  color: white;
}

/* Profile form */
.ggm-profile-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.ggm-pf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ggm-pf-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ggm-profile-input {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #1a1a1a;
  background: #fafafa;
  transition: border 0.2s;
  width: 100%;
}
.ggm-profile-input:focus {
  outline: none;
  border-color: #0e9e6e;
  background: white;
}
.ggm-profile-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ggm-profile-badge {
  display: inline-block;
  background: #e8faf3;
  color: #0e9e6e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .ggm-pf-row {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */