/* Wrapper for entire MentorGuide layout */
.mentor-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid #2a2a2a;
  background-color: rgb(44, 39, 39);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Header section for branding and intro */
.mentor-header {
  text-align: center;
  margin-bottom: 1.5rem;
  display: block;
  margin-top: 5px;
  gap: 1em;
  background-color: rgb(233, 212, 177);
}
.mentor-header h1 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  color: black;
}

.mentor-header p {
  font-size: 1rem;
  color: black;
  margin: 0;
}


/* Tab buttons (e.g. Work Experience, Project Showcase) */
.mentor-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
 
}
.mentor-tabs button:hover {
  background-color: #e1efff;
}

.mentor-tabs button {
  padding: 0.6rem 1rem;
  font-weight:bold;
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid #ccc;
  background-color: orange;
  cursor: pointer;
  transition: background-color 0.2s ease;
}



/* Output area where mentor speaks */
.mentor-output {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1rem;
  min-height: 140px;
  font-size: 1rem;
  line-height: 1.6;
    background-color: rgb(233, 212, 177);
    border: 1px solid #2a3b4d;
    color: black;
  }
  


/* Section buttons (e.g. Summary, Skills, etc.) */
.mentor-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.mentor-options button {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mentor-options button:hover {
  background-color: #edf5ff;
}


.mentor-options button:hover {
  background-color: #1e2d3a;
  border-color: #3d9df6;
  color: #ffffff;
}

.mentor-tab.active {
  background-color: #0e1117;
  border: 1px solid #3d9df6;
  color: #4fc3f7;
}



.mentor-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

/* Glowing button style */
.mentor-options button {
  background: linear-gradient(145deg, #1a2c3a, #1a2027);
  border: 1px solid #3d9df6;
  color: #e6f1ff;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  box-shadow: 0 0 10px rgba(61, 157, 246, 0.2);
  transition: all 0.3s ease;
}

.mentor-options button:hover {
  background: linear-gradient(145deg, #273646, #1e2a35);
  box-shadow: 0 0 16px rgba(80, 180, 255, 0.4);
  transform: scale(1.02);
  color: #ffffff;
}

body.dynamic-bg {
  transition: background-color 0.4s ease;
}

.bg-summary {
  background-color: #1a77da;
  color: blue;
}

.bg-skills {
  background-color: #1a2632;
}

.bg-experience {
  background-color: #1f2d33;
}

.bg-education {
  background-color: #212133;
}

.bg-certifications {
  background-color: #202b26;
}

.mentor-output {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mentor-output.visible {
  opacity: 1;
  transform: translateY(0);
}


.mentor-output-btn:active {
  transform: scale(0.97);
  background-color: #2e3a4a;
}

.mentor-output-btn:hover {
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}
