/* MENTOR DASHBOARD — profile setup + mentee list, built on top of dashboard.css's shared shell */
.section-gap {
  margin-top: 1.5rem;
}

.panel {
  background: #fff;
  border: 1px solid rgba(6, 6, 8, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.panel h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #060608;
  margin-bottom: 0.5rem;
}

.mentor-scope-note {
  background: #FBF0DD;
  border: 1px solid #F0DBAE;
  border-left: 4px solid #E8A33D;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: #6B4A10;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mentor-setup {
  max-width: 560px;
}

.mentor-setup .panel-note {
  font-size: 13px;
  color: rgba(6, 6, 8, 0.55);
  margin-bottom: 16px;
}

/* .btn/.btn-primary from nav-v2.css are scoped to #mainnav only — restyle here
   since this button sits inside the dashboard body, not the header. */
.mentor-form .btn-primary {
  display: inline-block;
  padding: 11px 22px;
  border: none;
  border-radius: 999px;
  background: #00C896;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
}

.mentor-form .btn-primary:hover {
  background: #00b085;
}

.mentee-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(6, 6, 8, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.mentee-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E6F3F2;
  color: #095F5B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.mentee-name {
  font-weight: 700;
  font-size: 14px;
  color: #060608;
}

.mentee-meta {
  font-size: 12px;
  color: rgba(6, 6, 8, 0.5);
  margin-top: 2px;
}

.mentee-empty {
  font-size: 13.5px;
  color: rgba(6, 6, 8, 0.55);
}

/* STUDENT-SIDE: mentor directory + favorite course (added to dashboard.html) */
.mentor-directory-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(6, 6, 8, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.mentor-directory-card .mentee-avatar {
  background: #FBF0DD;
  color: #8A5A0E;
}

.mentor-directory-info {
  flex: 1;
}

.mentor-directory-name {
  font-weight: 700;
  font-size: 14px;
  color: #060608;
}

.mentor-directory-meta {
  font-size: 12px;
  color: rgba(6, 6, 8, 0.5);
  margin-top: 2px;
}

.mentor-directory-bio {
  font-size: 12.5px;
  color: rgba(6, 6, 8, 0.6);
  margin-top: 4px;
}

.mentor-select-btn {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #00C896;
  background: #E6F3F2;
  color: #095F5B;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}

.mentor-select-btn:hover {
  background: #00C896;
  color: #fff;
}

.mentor-select-btn.selected {
  background: #00C896;
  color: #fff;
  border-color: #00C896;
}

.favorite-course-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.favorite-course-btn {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(6, 6, 8, 0.12);
  background: #fff;
  font-size: 13.5px;
  font-weight: 700;
  color: #060608;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}

.favorite-course-btn i {
  color: rgba(6, 6, 8, 0.3);
}

.favorite-course-btn.active {
  border-color: #00C896;
  background: #E6F3F2;
  color: #095F5B;
}

.favorite-course-btn.active i {
  color: #E8A33D;
}

/* MEETING REQUESTS — student-side status badge + mentor-side accept/decline actions */
.meeting-status {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.meeting-status.status-pending {
  background: #FBF0DD;
  color: #8A5A0E;
}

.meeting-status.status-accepted {
  background: #E7F7EC;
  color: #1F9D55;
}

.meeting-status.status-declined {
  background: #FDEAEA;
  color: #C0392B;
}

.mod-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.mod-btn {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 7px;
  border: 1px solid rgba(6, 6, 8, 0.12);
  background: #fff;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}

.mod-btn:hover {
  border-color: #00C896;
  color: #095F5B;
}

.mod-btn.danger {
  color: #C0392B;
  border-color: #F3C9C4;
}

.mod-btn.danger:hover {
  background: #FDEAEA;
}

/* FOOTER (dark, matches contact.css/join-team.css/home.css) */
footer {
  background: #060608;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4.5rem 3rem 0;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #F8F6F1;
}

.footer-logo span {
  color: #00C896;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.5);
  line-height: 1.7;
  margin-top: 0.9rem;
}

.footer-cols {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col-title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00C896;
  margin-bottom: 0.3rem;
}

.footer-col a {
  font-size: 0.82rem;
  color: rgba(248, 246, 241, 0.5);
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #00C896;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(248, 246, 241, 0.25);
}

.footer-paypal-form {
  display: inline-block;
}

.footer-paypal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8F6F1;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #060608;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-paypal-btn img {
  height: 16px;
  width: auto;
  display: block;
}

.footer-paypal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.12);
}

.footer-paypal-btn-pro {
  background: #00C896;
  color: #060608;
}

.footer-paypal-btn-pro:hover {
  background: #00b085;
  box-shadow: 0 8px 20px rgba(0, 200, 150, 0.25);
}

.footer-paypal-btn-pro.is-unlocked {
  background: rgba(0, 200, 150, 0.15);
  color: #00C896;
  cursor: default;
  box-shadow: none;
}

.footer-paypal-btn-pro.is-unlocked:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  footer {
    padding: 3.5rem 1.5rem 0;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-cols {
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
