﻿/* Optimized CSS for Bodha App */

/* Variables */
:root {
  --color-primary: #3498db;
  --color-secondary: #2ecc71;
  --color-accent: #e74c3c;
  --color-background: #f8f9fa;
  --color-text: #333333;
  --color-light-text: #666666;
  --color-border: #dddddd;
  --color-dark: #000000;

  --phase-intro: #9b59b6;
  --phase-empathize: #3498db;
  --phase-define: #2ecc71;
  --phase-ideate: #f1c40f;
  --phase-prototype: #e67e22;
  --phase-test: #e74c3c;

  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 15px rgba(0, 0, 0, 0.15);

  --border-radius-sm: 5px;
  --border-radius-md: 8px;
  --border-radius-lg: 10px;
  --border-radius-xl: 20px;
}

a {

  text-decoration: none;
}

.yellow-bg {
  background-color: #FDC85F;
}

.light-yellow-bg {
  background-color: #FFF6AD;
}

.darkblue-bg {
  background-color: #0c1f3f;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #fff;
}

p {
  margin: 1rem auto;
}

ul,
ol {
  margin: 1rem auto;
  padding-left: 2rem;
}

.main-header {
  background-color: #ffffff00;
  border-bottom: 1px solid #e2e8f0;
  color: #111111;

  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);

  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);

}

.landing-page .app-container {
  background: linear-gradient(90deg, transparent 45%, #f7fff5 45%, #f7fff5 55%, transparent 55%, transparent 20%, #f7fff5 20%, #f7fff5 30%, transparent 30%);
  background-size: 1em 1em;
  background-color: #ffffff;
  opacity: 1
}

.journey-page .app-container {
  background: #ffffff;
}

body.from-public .main-header {
  background-color: #ffffff;
  color: #111111;
}

body.from-student .main-header {
  background-color: #0058ff;
  color: #ffffff;
}

body.from-organization .main-header {
  background-color: #223636;
  color: #ffffff;
}

body.from-public .logo-default,
body.from-student .logo-student,
body.from-organization .logo-org,
body.from-admin .logo-default {
  display: inline-block;
}

body.from-public .logo-student,
body.from-public .logo-org,
body.from-student .logo-default,
body.from-student .logo-org,
body.from-organization .logo-default,
body.from-organization .logo-student {
  display: none;
}

body.from-student .main-footer,
body.from-organization .main-footer {
  background-color: #000;
  color: #ffffff;
}

.main-header .primary-button {
  background-color: #111111;
  border: none;
  color: #ffffff;
  box-shadow: none;
  margin-top: 0;
  padding: 0.65rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main-header .primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

body.from-student .main-header .primary-button {
  background-color: #003dd5;
}

body.from-organization .main-header .primary-button {
  background-color: #1c4d4d;
}

body.journey-page .main-header .primary-button {
  background-color: #1a3d70;
}

body.admin-page .main-header .primary-button {
  background-color: #333333;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo img {
  display: none;
  height: 40px;
}

.nav-utilities {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a.primary-button {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-hamburger {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  padding: 0.25rem;
  transition: transform 0.2s ease;
}

.nav-hamburger:hover {
  transform: scale(1.02);
}

.nav-hamburger__icon {
  display: block;
  line-height: 1;
}

.nav-hamburger:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.6);
  outline-offset: 3px;
}

.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  /*   background: rgba(0, 0, 0, 0.6);
  opacity: 0; */
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1200;
}

.nav-drawer-overlay--active {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  --drawer-bg: #ffffff;
  --drawer-text: #0f172a;
  --drawer-muted: rgba(15, 23, 42, 0.56);
  --drawer-border: rgba(15, 23, 42, 0.12);
  --drawer-hover: rgba(15, 23, 42, 0.08);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(85vw, 280px);
  background: var(--drawer-bg);
  color: var(--drawer-text);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -24px 0 48px -28px rgba(15, 23, 42, 0.35);
  z-index: 1201;
  pointer-events: none;
}

.nav-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 1rem;
}

.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 0.75rem;
  border-bottom: 1px solid var(--drawer-border);
}

.nav-drawer__title {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-drawer__close {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
}

.nav-drawer__close:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.6);
  outline-offset: 3px;
}

.nav-drawer__sections {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0 1.5rem;
}

.nav-drawer__section {
  padding: 0 1.5rem;
}

.nav-drawer__section+.nav-drawer__section {}

.drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.drawer-menu__item,
.drawer-menu__group {
  margin: 0;
}

.drawer-menu__link,
.drawer-menu__toggle {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-size: 0.95rem;
  font-weight: 500;
  gap: 0.5rem;
  justify-content: flex-start;
  padding: 0.7rem 0.85rem;
  text-align: left;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: 100%;
}

.drawer-menu__toggle[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.drawer-menu__link:hover,
.drawer-menu__link:focus-visible,
.drawer-menu__toggle:hover,
.drawer-menu__toggle:focus-visible,
.drawer-submenu__link:hover,
.drawer-submenu__link:focus-visible {
  background: #08656f;
  color: #fff6ad;
  font-weight: 400;
  outline: none;
}

.nav-drawer__close:hover,
.drawer-menu__link.is-active {
  background: #08656f;
  color: #fff6ad;
  font-weight: 400;
}

.nav-drawer__close:hover,
.nav-hamburger:hover,
body.from-organization .nav-links .nav-drawer a:hover,
body.from-organization .nav-links .nav-drawer a.is-active {
  background: #08656f;
  color: #fff6ad;
}

.nav-drawer__close {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.nav-hamburger {
  color: #08656f;
  padding: 8px;
}

body.from-organization .nav-hamburger {
  color: #fff;
  padding: 8px;
}

body .drawer-menu__link.is-active,
body .drawer-submenu__link.is-active {
  background: #08656f;
  color: #fff6ad;
  font-weight: 400;
}


.drawer-menu__toggle {
  justify-content: space-between;
  gap: 0.75rem;
}

.drawer-menu__toggle-label {
  flex: 1;
}

.drawer-menu__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
}

.drawer-menu__toggle-icon::before {
  content: '▸';
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.drawer-menu__toggle[aria-expanded="true"] .drawer-menu__toggle-icon::before {
  content: '▾';
}

.drawer-submenu {
  list-style: none;
  margin: 0.35rem 0 0.4rem;
  padding: 0 0 0 0.95rem;
  border-left: 2px solid var(--drawer-border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.drawer-submenu__item {
  margin: 0;
}

.drawer-submenu__link {
  border-radius: 10px;
  color: inherit;
  display: flex;
  font-size: 0.95rem;
  gap: 0.4rem;
  padding: 0.6rem 0.75rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.drawer-submenu__link.is-active {
  background: #08656f;
  color: #fff6ad;
  font-weight: 600;
}

.drawer-submenu--open {
  animation: drawer-expand 0.2s ease;
}

@keyframes drawer-expand {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-drawer {}

.nav-drawer--visible {

  transform: translateX(0);
  pointer-events: auto;
}

body.nav-drawer-open {
  overflow: hidden;
}

.legacy-nav,
.legacy-nav * {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}



.logo-default,
.logo-student,
.logo-org,
.logo-admin {
  display: none;
}

body.from-public .logo-default {
  display: inline-block;
}

body.from-student .logo-student {
  display: inline-block;
}

body.from-organization .logo-org {
  display: inline-block;
}



body.from-student .main-header {
  background-color: #0058ff;
  color: #ffffff;
}

body.from-organization .main-header {
  background: linear-gradient(44deg, #08656f, #428E70, #BBE8B1);
  color: #ffffff;
}

body.from-public .main-header {
  background-color: #ffffff00;
  color: #000;
}

.organization-page#landing-organization .main-header {
  position: absolute;
  width: 100%;
  background: #0c1f3f00;
}

.organization-page#landing-organization .welcome-section {


  background-image: url(/static/images/banner-org.png);
  background-size: cover;
  background-position: top;
  background-repeat: repeat-x;
  padding-top: 123px;
  padding-bottom: 4rem;
}

.organization-page#landing-organization .Hero-banner {

  color: #fff;
}

body.from-student .nav-links a,
body.from-organization .nav-links a,
body.from-student .footer-nav-links a,
body.from-organization .footer-nav-links a {
  color: #ffffff;
}


body.from-organization .nav-drawer {
  /* From https://css.glass */
  background-color: #fff;
  opacity: 1;

  color: #000;
}

body.from-organization .nav-links .nav-drawer a {
  color: #000;
}

.main-footer {
  background-color: #428E70;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: auto;
}

.main-footer a {
  color: #fff;
  text-decoration: none;
}

.main-footer a:hover {
  text-decoration: underline;
}





h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  line-height: 1.2;
  margin-top: 2rem;
}


a:hover {
  text-decoration: none;
}

/* Layout */
h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

.app-container {

  min-height: 100vh;
  /*      display: flex;
    flex-direction: column;*/

}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /*     padding: 2rem;*/


}


main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 77vh;
}

footer {
  text-align: center;
  padding: 1.5rem 0;
  color: #000;
  font-size: 0.9rem;
  padding: 46px;
  background: #FDC85F;
  border-top: 1px solid #ddd;

}

footer a {
  color: #000;
  text-decoration: none;
}

footer li {

  list-style-type: none;
}

ul.footer-nav-links {
  text-align: left;
}

.main-body-wrap {
  background-color: #ffffff66;
  border-radius: var(--border-radius-lg);
  /* box-shadow: var(--shadow-md); */
  padding: 0rem;

  animation: fadeIn 0.5s ease-out;
  box-shadow: 0px 5px #eeeeee;
  border: 1px solid #eeeeee;
  margin: 2rem auto;
  min-height: 70vh;
  background-color: #ffffff;
  opacity: 1;
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #ffffff 13px), repeating-linear-gradient(#fdfdfd55, #fdfdfd);
}

/* Nav Bar Container */
/* Section Styling */
.rag-debug {
  display: none
}

.empathize-section,
.define-section,
.ideate-section,
.prototype-section,
.test-section,
.your-exp_body-content {}

.welcome-section .container {
  padding-top: 0px;
}

.empathize-substep label {
  margin-bottom: 1rem;
  display: block;
}

.empathize-substep .form-section {
  padding: 1rem 0rem;
  border: 0px;
  margin: 0px;
  padding-bottom: 0px;
}

.phase-intro {
  margin: 1rem 0px;
  border-bottom: 1px solid;
  padding-bottom: 1rem;
}

.empathize-substep {}

div#empathize-step-1 {
  text-align: center;
}

 div#user-type-options {   padding: 1rem 0rem;
  margin: 0 auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



  .wisdom-cat-message {
    display: flex;
    align-items: flex-start;
    background: #fff9f0;
    border: 2px solid #f6d67a;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);    margin-bottom: 3rem;
  }

  .wisdom-cat-avatar {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 1rem;
  }

  .wisdom-cat-text {
    flex: 1;
    color: #3a2f1f;    text-align: left;
    line-height: 1.55;
  }

  .wisdom-cat-text p {
    margin: 0.4rem 0;
  }

  .wisdom-cat-text strong {
    color: #c87137;
  }

  @media (max-width: 640px) {
    .wisdom-cat-message {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .wisdom-cat-avatar {
      margin: 0 0 0.75rem;
    }
  }
/* Welcome Screen */
.header-content {
  display: flex;
  align-items: center;
  /* Vertically center logo and h1 */
  gap: 15px;
  /* Spacing between logo and h1 */
}

.page-section {
  padding: 3rem 2rem;

}

.page-section h1:first-child,
.page-section h2:first-child {
  margin-top: 0px;

}

.phase-mode main .page-section {
  padding: 2rem 2rem 0rem 2rem;
}

.two-col {
 display: flex
;
  grid-template-columns: 50% 50%;
}

.six-four-col {
display: flex
;
  grid-template-columns: 60% 40%;    gap: 2rem;
}

.three-col {
     display: flex
;
    flex-direction: row;    
}
@media (max-width: 768px) {
  ul.footer-nav-links {
    text-align: left;
    margin: 0;
    padding: 1rem 0px;
}
  .three-col {
 display: flex
;
    flex-direction: column;
}
.six-four-col {
    flex-direction: column;
}

}
.Hero-banner {

  border-radius: 20px;
  margin-top: 0px;
}

.Hero-banner img {
  max-width: 100%;
  border-radius: 20px;
}

.Hero-banner .text {
  padding-right: 2rem;
  padding-top: 4rem;
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.site_info_container {
  display: flex;
  padding: 1.5rem 2rem;
  gap: 20px;
}

.site_info_container h1 {
  color: #000;
}

.logo img {
  height: 60px;
}

.site_info_container .column {}

.site_info_container .column.left {
  flex: 3;
  /* Larger column */

}

.site-info {
  text-align: left;
}

.site_info_container .column.right {
  flex: 4;
}

.site_info_container .column.right .column-content {
  display: flex;
}

.nav-bar {
  flex: 2;
}

#language-switcher {
  flex: 1;
  padding: 5px;
  height: 37px;
  margin-left: 10px;
  max-width: 120px;
}

select#language-switcher {
  border: 0px;
  background: transparent;
  border-left: 1px solid;
  border-radius: 0px;
  margin-left: 10px;
  padding-left: 12px;
}

.phases-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.cards {
  gap: 1rem;
  margin: 2rem 0;
}

.card {
  padding: 1.5rem;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius-md);
}

.phase-card {
  flex: 1;
  min-width: 200px;
  position: relative;
  max-width: 300px;
  border: 4px dashed #333;
  border-radius: var(--border-radius-md);
  color: #000;


}

.phase-card.iterate-icon:not(:last-child)::after {
  content: "\f021";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  position: absolute;
  bottom: 6rem;
  left: 106%;
  transform: translateX(-50%);
  background: #333;
  border: 1px solid #000;
  padding: 4px 6px;
  border-radius: 17px;
  height: 24px;
  width: 18px;
}
#insights-page article {
    background: #fff;
    margin: 1rem 0;
}
.dark-bg .primary-button {}

.strip-highlight {
  background: #fff6ad82;
  color: #428E70;


}

.strip-highlight .cta-section {
  border-top: 1px solid;
}
.gl-video {
    padding-top: 3rem;
    margin-top: -3rem;
}
div#detach-button-host {
    display: none !important;
}
.cta-image {
  margin: -76px 0px;
}

.testimonials {
  background: repeat-x bottom #fff6ad82;
  color: #428E70;
}

.testimonials .card {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

span.author {
  font-style: italic;
  margin-top: 10px;
  display: block;
}

.phase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.phase-card h3 {
  margin-bottom: 0.5rem;
}

/*
  .empathize { border: 4px dashed var(--phase-empathize); }
  .define { border: 4px dashed var(--phase-define); }
  .ideate { border: 4px dashed var(--phase-ideate); }
  .prototype { border: 4px dashed  var(--phase-prototype); }
  .test { border: 4px dashed var(--phase-test); }
  */
/* Rohan Fixes */


.define-content {
  margin-bottom: 40px;
}

.define-content ul,
.define-content ol {
  margin-left: 20px;
}

/* Popup start*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.modal-box input {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 0.8rem;

  font-size: 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
}

.modal-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  z-index: 9999;
  opacity: 0.95;
  width: 350px;
}




/* Popup end */

.challenge-statment {
  background: #efefef87;
  margin-top: 30px;
  padding: 20px;
  border-radius: 5px;
  display: none;
}

.form-section.challenge-statement-section {
  padding: 0px;
  border: 0px;
      background: #428e70;
    padding: 3rem;
    margin: 0 -2rem;
    color: #fff;
}

.define-feedback-form .add-thought{    border: 0px;}

p.theme-item,
.experiment-option {
  margin-left: 10px;
}

p.define-intro {
  margin-bottom: 10px;
}

h4.path-title,
h4.career-prototype-heading {
  margin-top: 10px;
}

p.challenge-header {
  padding-top: 10px;
  border-top: 1px solid #2ecc71;
  margin-top: 20px;
}

.career-option h3 {
  margin-top: 20px;
}

.empathize-form {
  margin-top: 20px;
  border-top: 2px solid;
  padding-top: 40px;
}

.form-footer {
  margin-top: 20px;
}

.career-prototype {
  border-top: 2px solid #222;
}

.experiment-item {
  margin-left: 30px;
  font-weight: 600;
}

.career-prototype {
  border-top: 2px solid #222;
  margin-top: 20px;
  padding-top: 20px;
}


.career-option-relevance {
  margin-top: 8px;
}
.career-option-details{    padding: 0rem 1rem;}

.career-option-details div {
  padding-bottom: .5em;
  font-size: 14px;
}

.career-option-shortlist {

  font-size: small;
  /* border-radius: 8px; */
  display: inline-block;
  margin-left: 10px;
  padding: 10px;

}
.career-option-shortlist h4{    margin-top: 0px;
}

.career-option-checkbox {
  padding: 4px 16px;

}

.styled-checkbox input[type="checkbox"] {
  display: none;
}

.styled-checkbox label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

.styled-checkbox label::before {
  content: "\f096";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: -7px;
  font-size: 23px;
  color: #428E70;
  transition: color 0.3s;
}

.styled-checkbox input[type="checkbox"]:checked+label::before {
  content: "\f14a";
  /* Font Awesome checked square */
  font-weight: 900;
  /* solid */
  color: #428E70;
}

.career-option-container h3 {
  margin-top: 0px;
}

.career-option-container {
  margin-bottom: 20px;
  margin-bottom: 10px;
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  /* background: #fbfbfb; */
  box-shadow: aquamarine;
  box-shadow: 1px 2px 0px 0px #222;
}

.career-option-container>div {
  flex: 33%;
  overflow: hidden;
}

.career-option-container:hover {

  background: #fbfbfb;
}

.career-option-container:hover .career-option-checkbox {}

.career-option-relevance-blocks {
  margin-top: 10px;
  margin-bottom: 10px;
}

.career-experiments-block {
  flex-direction: column;
}

.relevance-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.relevance-label {

  font-size: 0.85rem;
  font-weight: 500;
}

.relevance-bar-wrapper {
  flex-grow: 1;
  background-color: #eee;
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
}

.relevance-bar-fill {
  height: 100%;
  transition: width 0.4s ease;    background: #428e70;

}

.relevance-percent {
  font-size: 0.8rem;
  width: 38px;    font-weight: 600;
  text-align: right;
}


.career-questions-container {

  padding: 16px;

  transition: margin 0.2s ease, box-shadow 0.2s ease;
}

.career-questions-container textarea {
  font-size: small;
  padding: .4rem;
}

.career-questions-container textarea::placeholder {
  color: #aaa;
  font-style: italic;
  font-size: small;
}

.experiment-option {

  margin-left: 0px;

}

#ideate-feedback-form .form-section {


  padding: 0;
  background-color: initial;
  border-radius: 0px;
  /* border-left: 4px solid var(--color-primary); */
  border: 0px;

}

form#prototype-feedback-form .next-steps {
    border: 0px;
    padding: 0px;

;
}
.next-steps-sub-head{       padding-bottom: 2rem;
 display: flex}
form#prototype-feedback-form .next-steps .gl-video {
    padding-top: 0rem;
    margin-top: -3rem;}

#prototype-content,
#ideate-content {
  display: none
}

.experiment-options-container h3 {}


button.next-button {
  margin-left: 10px;
}

.secondary-button {
  background-color: #f1f3f5;
  color: var(--admin-text);
  border: 1px solid #ddd;
}



/* Phase Indicator */
.progress-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px auto;
  width: 100%;
  padding-bottom: 0px;
  padding-top: 3rem;
}

.progress-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.progress-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: white;
  color: #999;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
  position: relative;
  z-index: 1;
}

.progress-step.current {
  background: #428E70;
  color: #fff;
  border-color: #428E70;
}

.progress-step.completed {
  background: #000;
  color: white;
  border-color: #000;
}

.progress-line {
  height: 2px;
  background-color: #ccc;
  /* default gray */
  width: 40px;
  position: relative;
  transition: background-color 0.3s ease;
}

.progress-line.completed {
  background-color: #000;
  /* green when phase is completed */
}

.progress-line .count-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1abc9c;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

.warning-message {
  border-left: 5px solid #f39c12;
  background-color: #ffadad2e;
  color: #000;
  border-radius: 5px;
  margin-bottom: 0px;
  font-size: 12px;
  padding: 14px;
  margin: 2rem 0;

}

.reload-banner {
  padding: 0px;
  width: 100%;
  margin-bottom: 0px;
}

body.in-phase-mode .hide-in-phase {
  display: none !important;
}

body:not(.logged-in) .hide-when-logged-out {
  display: none !important;
}

/* Rohan End */


.mock-data-button {
  display: none;
}

/* Forms */
.form-section {
  margin-bottom: 2rem;
  padding: 1rem;
  /* background-color: #f8f9fa; */
  border-radius: var(--border-radius-md);
  /* border-left: 4px solid var(--color-primary); */
  border: 2px solid #dcdcdc;
}

.form-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

textarea::placeholder {
  color: #aaa;
  font-style: italic;
  opacity: 1;
  font-size: 15px;
}

textarea {
  color: #08656F;
  /* Your brand blue */
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  resize: vertical;
}

.question-list {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 4px;
  margin-top: -8px;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.question-list li {
  color: var(--color-light-text);
  font-style: italic;
}

textarea,
input[type="text"],
input[type="date"] {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

textarea:focus,
input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;

  justify-content: right;
}

/* Buttons */

button {
  border: 2px solid #000;
  padding: 0.4rem 1rem;
  margin: 0.25rem;
  cursor: pointer;
  background-color: transparent;
  border-radius: 5px;
  transition: background 0.2s ease, color 0.2s ease;
}

button:hover {
  /* From https://css.glass */

  color: #fff;
  background-color: #000000;
  opacity: 1;
  background-image: linear-gradient(0deg, #000000 50%, #171717 50%);
  background-size: 4px 4px;
}

.primary-button,
.secondary-button {

  font-weight: 600;
  transition: margin 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;


  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;

}

.primary-button {
  border: 1px solid;
  /*background-color: #fff;   color: #428E70; 
    box-shadow: 4px 6px 0px rgb(0 0 0);*/
  background: linear-gradient(135deg, #428E70, #08656F);
  color: #fff;

  /*  background: linear-gradient(132deg, #08656F,#428E70,#8a8821,#2f7011d7);
  background-size: 400% 400%;
  animation: BackgroundGradient 15s ease infinite; */

}

.secondary-button {
  background: #fff;
  color: #428E70;
  border: 2px solid #428E70;
  border-radius: 8px;

}

.primary-button:hover {
  /* transition: margin 0.2s ease, box-shadow 0.2s ease;
    background: linear-gradient(135deg, #428E70, #08656F);
  box-shadow: 2px 2px 0px rgb(195 195 195 / 25%);

  */
}

.secondary-button:hover {
  background: #fff;
  transition: margin 0.2s ease, box-shadow 0.2s ease;
  color: #428E70;
  box-shadow: 2px 2px 0px rgb(195 195 195 / 25%);


}

.primary-button:hover {
  background: linear-gradient(132deg, #08656F, #8a8821, #428E70, #2f7011d7);
  background-size: 400% 400%;
  animation: BackgroundGradient 15s ease infinite;
}

@keyframes BackgroundGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



.secondary-button:hover {}

.back-button {
  /*   margin-right: auto; */
}

/* Test Phase Columns */
.career-columns-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.career-column {
  min-width: 300px;
  width: 300px;
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  scroll-snap-align: start;
  position: relative;
  border: 2px solid transparent;
}

.career-column-header {
  background-color: var(--phase-test);
  color: white;
  padding: 1rem;
  border-top-left-radius: var(--border-radius-md);
  border-top-right-radius: var(--border-radius-md);
  font-weight: 600;
  text-align: center;
  position: relative;
}

.career-column-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Priority toggle */
.career-priority-toggle {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
}

.career-priority-toggle input[type="checkbox"] {
  display: none;
}

.career-priority-toggle label {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.career-priority-toggle label:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.career-priority-toggle label::after {
  content: "★";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  opacity: 0.5;
}

.career-priority-toggle input[type="checkbox"]:checked+label {
  background-color: #f1c40f;
}

.career-priority-toggle input[type="checkbox"]:checked+label::after {
  opacity: 1;
}

.career-column.priority {
  border: 2px solid #f1c40f;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.career-column.priority .career-column-header {
  background-color: #f1c40f;
  color: #34495e;
}


/* Journal template */
.journal-template {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #f8f8f8;
  border-radius: var(--border-radius-md);
  margin: 1rem 0;
}

.journal-template label {
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
}

.journal-template input[type="checkbox"] {
  margin-right: 0.5rem;
}

.navigation-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.final-actions {
  display: flex;
  gap: 1rem;
}

#restart-journey-button {
  background-color: #7f8c8d;
  color: white;
}

#restart-journey-button:hover {
  background-color: #95a5a6;
}

#save-results-button {
  background-color: var(--phase-test);
}

#save-results-button:hover {
  background-color: #c0392b;
}

/* Column scroll indicator */
.column-scroll-indicator {
  display: none;
  text-align: center;
  color: #7f8c8d;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .column-scroll-indicator {
    display: block;
  }

  .career-columns-container {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .app-container {}

  .Hero-banner {

display: flex
;
        grid-template-columns: 100%;
        flex-direction: column;
  }

  .phases-container {
    flex-direction: column;
    align-items: center;
  }

  .phase-card {
    width: 100%;
    max-width: 100%;
  }

  .phase-card:not(:last-child)::after {

    bottom: 0rem;
    left: 50%;
    top: 96px;

  }

  .phase-card.iterate-icon:not(:last-child)::after {
left: 50%;top: 95%;
}

  .form-actions,
  .navigation-controls,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .back-button {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .career-column {
    min-width: 260px;
    width: 260px;
  }
}



/* 🎯 Kanban Board Wrapper */
.kanban-board {
  padding: 3rem 0;
    width: 100%;
    
}

.kanban-board h3 {
  text-align: center;
  margin-bottom: 1rem;
}

/* 📐 Flex container for all columns */
.kanban-container {
    display: flex
;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: flex-start;
    justify-content: center;
}

/* 📦 Each Kanban Column */
.kanban-column {
    flex: 0 0 90%;
    max-width: 31%;
    min-width: 280px;
    scroll-snap-align: start;
    padding: 0.75rem;
    border: 1px solid #eee;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    min-height: 50vh;
    background: #ffffffed;    border-radius: .5rem;
}


.kanban-column-title {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
    /* display: inline-block; */
    /* background: rgba(0, 0, 0, 0.1); */
    padding: .8rem 1rem;
    /* margin-left: -12px; */
    margin-top: unset;
    /* border-radius: 0px 8px 8px 0px; */
}

.planned.kanban-column {
  border-top: 3px solid #84c376;
}

.in_progress.kanban-column {
  border-top: 3px solid #428E70;
}

.completed.kanban-column {
  border-top: 3px solid #08656F;
}
/*
.planned .kanban-column-title {
  background: #84c376;
}

.in_progress .kanban-column-title {
  background: #428E70;
}

.completed .kanban-column-title {
  background: #08656F;
}*/

/* 🧾 Cards go in here */
.kanban-list {
  min-height: 50vh;
}

div#kanban-backlog {
  min-height: auto;
}

/* 🧩 Experiment Card Styles */
#export-pdf-button {
  display: none;
}

.drag-over {
  background-color: #f0f8ff;
  border: 2px dashed #aaa;
}

.experiment-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 10px;
  cursor: grab;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}

.experiment-card:active {
  cursor: grabbing;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.experiment-card textarea,
.experiment-card select {
  width: 100%;
  margin-top: 6px;
  font-size: 0.9rem;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
  resize: vertical;
}

.experiment-planning-section {
/*   background-color: #ffffff;
  opacity: 1;
  background-size: 18px 20px;


  background-image: linear-gradient(#fffce6 1.5px, transparent 1.5px), linear-gradient(to right, #fffce6 1.5px, #ffffff 1.5px);
 */
    background-color: #efefef42;
    opacity: 1;
    background-image: radial-gradient(circle at center center, #ffffff, #fffffe), repeating-radial-gradient(circle at center center, #fbfbfb, #ffffff00, 20px, transparent 40px, #ffffff00 20px);
    background-blend-mode: multiply;
    margin: 3rem -2rem;
}

.experiment-planning-section .planner-title {
/*   background-color: #fdf4ac;
  opacity: 1;
  background-image: radial-gradient(circle at center center, #fffce6, #fdf4ac), repeating-radial-gradient(circle at center center, #fffce6, #fffce6, 20px, transparent 40px, transparent 20px);
  background-blend-mode: multiply; */
text-align: center;
    display: flex;padding: 1rem 1rem;
}

.planner-title-text{    width: 100%;
    display: flex
;
    flex-direction: column;
    gap: 0px;
    margin: 2rem;
    text-align: left;
    padding-top: 1rem;
    /* border-bottom: 1px solid;*/}

.test-whats-next {
  padding: 1rem;
  color: #fff;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0px;

  background: rgba(66, 142, 112, 0.73);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.8px);
  -webkit-backdrop-filter: blur(6.8px);
  backdrop-filter: blur(6.8px);
  border: 1px solid rgba(66, 142, 112, 0.3);
}

.exp-next-careers {
  margin-left: 1rem;
}

.exp-next-career-chip {
  display: list-item;
  list-style-type: decimal;
}

.exp-next-column.exp-next-column--tasks {
  display: none;
}

.exp-next-column.exp-next-column--careers {
  padding-bottom: 2rem;
}

.exp-next-surface {
  border-top: 1px solid #fff;
  padding-top: 2rem;
}

.exp-next-grid {

  display: flex;
  gap: 2rem;
}

/* 💡 Optional drag-over effect */
.kanban-list.drag-over {
  background-color: #e6f7ff;
  border: 2px dashed #1890ff;
}

/* Test Phase: new elements */
.test-phase-overview {
  margin: 1rem 0 0.5rem;
}

.chosen-careers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.career-chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

span.career-chip:before {
    font-family: 'FontAwesome';
    content: "\f0b1";margin-right: 8px;
} 
.test-kanban-board {
  margin-top: 1.25rem;
}

.test-kanban-board .kanban-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
}

.backlog-column {
  margin-top: 1.25rem;
  /* background: #f8f9fa; */
  border-radius: 0;
  padding: 0.75rem;
  min-height: 220px;
  display: none;
}

.backlog-header {
  border-top: 3px solid #333;
}

#kanban-backlog-title {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
  display: inline-block;
  padding: .8rem 1rem;
  margin-left: 0px;
  margin-top: unset;
  border-radius: 0px 0px 8px 8px;
  background: #333;
}

.career-badge {
  --career-color: #eef2ff;
  display: inline-block;
  background: var(--career-color);
  color: #1f2a44;
  padding: 2px 8px;
  border-radius: 6px;
  margin: 2px 0 6px;
  font-size: 0.8rem;
}
.career-badge:before {
    font-family: 'FontAwesome';
    content: "\f0b1";
    margin-right: 8px;
}

.experiment-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.experiment-card .card-actions {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.experiment-card .card-header .title {
  cursor: pointer;
}

.experiment-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -10px;
  box-shadow: crimson;
  background: #f8f9fa;
  box-shadow: inset -5px 1px 4px rgb(229 229 229 / 50%);
  margin-top: 6px;
}

.experiment-card .card-footer .footer-actions {
  display: flex;
  align-items: center;
}

.pin-btn,
.delete-btn,
.card-delete-btn,
.card-edit-btn,
.card-reflect-btn {

  font-size: 0.8rem;
  padding: 4px 11px;
  border-radius: 4px;
  border: 1px solid #cdcdcd;
  background: #f3f3f3;
  cursor: pointer;
}

.card-reflect-btn {
  border-color: #cbd5e1;
  color: #111827;
}

.delete-btn,
.card-delete-btn {
  border-color: #fca5a5;
  color: #b91c1c;
}


.card-actions button {
  background: none;
  border: 0px;
  padding: 8px 14px;
  border-left: 1px solid #ddd;
  border-radius: 0px;
  text-align: center;
  margin: 0px;
}

.card-actions button:hover {
  background: #fffce6;
  color: #000;
}

button.card-edit-btn {
  background: linear-gradient(135deg, #428E70, #08656F);
  color: #fff;
  box-shadow: 1px 1px 5px -1px #333;
}

button.card-edit-btn:hover {
  background: linear-gradient(135deg, #428E70, #08656F);
  color: #fff;

  box-shadow: 0px 0px 0px 0px #333;
}

.pin-btn.pinned {
  background: #ffe0e0;
  border: 1px #b72020;
  color: #b72020;
}

.pin-btn i {
  pointer-events: cursor;
}


.count-badge {
    display: inline-block;
    background: #666;
    color: #fff;
    border-radius: 3.5rem;
    padding: 0.4rem;
    font-size: .7rem;
    vertical-align: middle;
    margin-left: 6px;
    width: 2rem;
}

.experiment-card.dragging {
  opacity: 0.85;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .test-kanban-board .kanban-grid {
    grid-template-columns: 1fr;
  }
}




.status-switcher {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.status-switcher select {
  margin-left: 0.5rem;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 0.85rem;
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.status-icon {
  font-size: 1rem;
}

.user-dropdown {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #428E70, #08656F);
  padding: 0px 1px;
  border-radius: 22px;
  width: 70px;
  border: 1px solid;
}

.avatar-button span.arrow {
  color: #fff;
  font-size: 20px;
}

.avatar-button {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0px 1px;
  margin: 0.25rem;
}

button#avatar-toggle:hover {
  background: transparent;
}

.avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #fff;    object-fit: cover;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  list-style: none;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
}

.dropdown-menu li:hover {
  background: #f5f5f5;
}

.hidden {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal h2 {
  margin-top: 0px;
}

.modal.hidden {
  display: none;
}

.challenge-statement-card {

  position: relative;
  border: 1px solid #d9dee7;
  border-radius: 10px;
  /*  padding: 1.25rem 1.5rem;  */
  padding: 1.1rem 4.1rem 1.1rem 1.1rem;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: row;
  font-size: 1.2rem;

}

.challenge-statement-card:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  border-color: #c1c7d6;
}

.challenge-statement-card.empty .challenge-statement-text {
  color: #6b7280;
  font-style: italic;
}

.challenge-statement-text {
  margin: 0;
  white-space: pre-wrap;
  color: #1f2937;    margin-right: 0.5rem;
}

.challenge-edit-link {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: #2563eb;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.challenge-edit-link:hover,
.challenge-edit-link:focus {
  background: rgba(37, 99, 235, 0.08);
  text-decoration: underline;
}

.challenge-edit-container {
  margin-top: 0.85rem;
}

.challenge-edit-actions {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.challenge-edit-actions .primary-button,
.challenge-edit-actions .secondary-button {}

.wildcard-label {

  font-size: 1rem;
  background: #222;
  display: block;
  color: #f1c40f;
  padding: 5px 12px;
  border-radius: 5px;
  margin-top: -36px;
  z-index: 1000;
  position: absolute;
  margin-left: -27px;
}

.modal-content h2 {
  margin-top: 0px;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-content button {
  margin-left: 0px;
}

.close-button {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Tabs Layout */
.tabs {
  margin-top: 1rem;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tab-button {
  padding: 6px 14px;
  border: 1px solid #ccc;
  background-color: #f2f2f2;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.tab-button.active {
  background-color: #3498db;
  color: #fff;
  border-color: #2980b9;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
  display: block;
}

/* Smooth fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading-indicator {
  margin: 20px auto;
  padding: 1rem;
  text-align: center;
  font-style: italic;
  color: #666;
}

@media screen and (max-width: 768px) {

  .experiment-card textarea,
  .experiment-card select {
    font-size: 0.85rem;
  }

  .kanban-board h3 {
    font-size: 1.1rem;
  }

  .kanban-column h4 {
    font-size: 1rem;
  }

  .kanban-container {
    flex-direction: column;
  }

  .kanban-column {
    width: 100%;
    max-width: 100%;
  }

  .kanban-column h4 {
    position: sticky;
    top: 0;
    background: #f8f9fa;
    z-index: 1;
    padding: 0.5rem 0;
  }

  .toggle-column {
    font-size: 1.2rem;
    margin-left: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
  }

  .kanban-list.collapsed {
    display: none;
  }



  .menu-toggle {
    display: block;
    position: absolute;
    right: 1rem;

  }

  .site_info_container .column.right .column-content {
    flex-direction: row-reverse
  }

}

.inline-error {
  color: #c0392b;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.gl-content {}

#global-loader {
  position: fixed;
  inset: 0;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  background: linear-gradient(132deg, #d4fbff80, rgb(247 247 247 / 93%), #e2f1ebcf, #a9f7d8d6);
  animation: BackgroundGradient 15s ease infinite;
}



@keyframes BackgroundGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}





#global-loader.hidden {
  display: none;
}

.gl-content {
  text-align: center;

  padding: 4rem;
  background: #ffffffd6;
  aspect-ratio: 1;
  clip-path: shape(from 59.49% 84.97%, curve to 37.69% 89.35% with 50.00% 90.39%, curve to 16.06% 79.04% with 25.38% 88.31%, curve to 10.11% 57.26% with 6.73% 69.76%, curve to 16.19% 33.90% with 13.49% 44.75%, curve to 28.06% 14.79% with 18.89% 23.04%, curve to 50.56% 4.65% with 37.24% 6.55%, curve to 70.80% 14.36% with 63.87% 2.75%, curve to 88.37% 34.46% with 77.73% 25.97%, curve to 94.21% 55.48% with 99.00% 42.95%, curve to 79.20% 73.77% with 89.41% 68.00%, curve to 59.49% 84.97% with 68.99% 79.55%);

}

#loader-video {
  max-width: 120px;
  margin-bottom: 20px;
}

#loader-label {
  color: #428e70;
  font-size: 1.2em;
  font-weight: normal;
  border-top: 1px dashed;
}



.role-badge {
  background: #222;
  color: #fff;
  border-radius: 2px 6px 2px;
  padding: 2px 8px;
  font-size: 0.8em;
  margin-left: 8px;
}


.credits-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.credits-list li {
  margin-bottom: 0.75rem;
}

.credit-label {
  font-weight: 600;
  margin-right: 0.5rem;
}

.planner-layout {
  display: grid;
  grid-template-columns: 2fr 0fr;

  align-items: start;
  transition: grid-template-columns .25s ease;

}

.experiment-detail {
  /*   background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  min-height: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); */
  margin-left: -12px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.8px);
  -webkit-backdrop-filter: blur(6.8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2rem;
     margin: 2rem auto;

  display: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s ease, transform .25s ease;
}

.exp-detail-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 .5rem;
}

.exp-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.exp-detail-actions {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.exp-close-btn {
  border: 1px solid #cbd5e1;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: .85rem;
}

.exp-delete-btn {
  border: 1px solid #fca5a5;
  background: #fff;
  color: #b91c1c;
  border-radius: 8px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: .85rem;
}

.exp-delete-btn:hover {
  background: #b91c1c;
  color: #fff;
}

.exp-detail-careers {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}

.exp-detail-chip {
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  font-size: .8rem;
}

.exp-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.exp-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

section.exp-section.exp-reflect {
  background: #bde8ba;
  background: linear-gradient(181deg, rgba(189, 232, 186, 1) 0%, rgba(87, 199, 133, 0.23) 50%, rgba(237, 221, 83, 0.22) 100%);
  margin: 2rem -2rem 0rem -2rem;
 padding: 1rem 2rem;
  background-size: contain;
}

.exp-section h5 {
  margin: 0 0 .5rem;
  font-size: .95rem;
  font-weight: 600;
}

.exp-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.exp-suggestions {
    border: 1px solid #ccc;
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    margin: 2rem 0rem;
}

.exp-suggest-row {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  /* border-radius: 10px; */
  padding: .5rem 0rem;

  font-size: .9rem;
}

.exp-suggest-row span {
  display: block;
  width: 82%;
}

.exp-suggest-row+.exp-suggest-row {
  margin-top: .65rem;
}

.exp-suggest-row .add-btn {

    /* font-size: .7rem; */
    padding: 1rem 0.2rem;
    border-radius: 3px;
    /* border: 0px; */
    border: none;
    /* background: #fdeb7d; */
    cursor: pointer;
    text-align: left;
    /* width: 109px; */
    flex-direction: row;
    display: flex
;
    color: #20757e;
    gap: 0;
}
.exp-suggest-row .add-btn i {
font-size: 2rem;
    margin-right: 6px;
}

.exp-suggest-row .add-btn:hover {
   color: #000;background: none;
}

.exp-generate-btn {

}

.exp-generate-btn:hover {

}

.exp-generate-btn[disabled] {
  opacity: .6;
  cursor: not-allowed;
  background: #f4f4ff;
}

.exp-suggest-state {
  border: 1px dashed #d1d5db;
  border-radius: 10px;
  padding: .75rem .9rem;
  font-size: .9rem;
  color: #475569;
  background: #f8fafc;
}

.exp-suggest-state+.exp-suggest-state {
  margin-top: .65rem;
}

.exp-suggest-state.is-error {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #b91c1c;
}

.exp-notes {
  border: 1px solid #fde68a;
  background: #fffbea;
  border-radius: 12px;
  padding: 1rem;
}

.exp-note {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  padding: .6rem .75rem;
}

.exp-note+.exp-note {
  margin-top: .65rem;
}

.exp-note .actions button {
  background: none;
  border: none;
  cursor: pointer;
  color: #475569;
}

.exp-note .actions button:hover {
  color: #1f2937;
}

.exp-add-note {
  border-radius: 8px;
  border: 1px solid #94a3b8;
  padding: .35rem .9rem;
  background: #fff;
  font-size: .85rem;
  cursor: pointer;
}

.exp-add-note:hover {
  background: #f8fafc;
}

.exp-reflect label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: .75rem;

}

.exp-reflect textarea {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.65rem;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 72px;
  background: #fff;
}

.exp-reflect textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.exp-reflect-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

label.exp-reflect-toggle {
  display: inline-block;
  /* flex-direction: column; */
  /* gap: .4rem; */
  font-weight: 500;
  color: #1f2937;
  /* margin-bottom: .75rem; */
  width: 100%;
  margin-top: -18px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid;
}

.exp-reflect-toggle input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: #428e70;
}

.exp-reflect-body {
  margin-top: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  background: #fff;
}

.exp-reflect-body.is-collapsed {
  display: none;
}

.exp-reflect-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.exp-reflect-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exp-reflect-outcomes .exp-section {
  margin: 0;
}

.exp-reflect-outcomes .exp-section+.exp-section {
  margin-top: 1rem;
}

.exp-radio-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-top: .75rem;
}

.exp-radio-group .group-label {
  font-weight: 600;
  color: #1f2937;
  font-size: .9rem;
}

.exp-radio-group .radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.exp-radio-group .radio-options label {
  flex-direction: row;
}

.exp-radio-group label {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
}

.exp-radio-group input[type="radio"] {
  accent-color: #428e70;
}

.exp-conclusion {
  /* background: #f8fafc; */
  border-radius: 0;
  /* padding: 1rem; */
  border-left: 1px solid #e2e8f0;
  padding-left: 1rem;

}

.exp-ai {
  border: 1px solid #c7f0cc;
  background: linear-gradient(135deg, rgba(129, 230, 217, 0.25), rgba(14, 165, 233, 0.35));
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.exp-ai-body {
  background: #fff;
  border-radius: 10px;
  padding: .75rem .9rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: .9rem;
  color: #0f172a;
  line-height: 1.45;
}

.exp-conclusion label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: .8rem;
}

.exp-conclusion textarea {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: .55rem .65rem;
  font-size: .95rem;
  min-height: 72px;
  resize: vertical;
  background: #fff;
}

.exp-conclusion textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

@media (max-width: 900px) {
  .exp-detail-grid {
    grid-template-columns: 1fr;
  }

  .exp-reflect-grid {
    grid-template-columns: 1fr;
  }
}

.small-tag {
  display: inline-block;
  font-size: .7rem;
  color: #6b7280;
  padding-left: 1rem;
}

@media (max-width: 1024px) {
  .planner-layout {
    grid-template-columns: 1fr;
  }
}

.planner-layout.show-detail {
  grid-template-columns: 1fr 2fr;
}

.planner-layout.show-detail .experiment-detail {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Hide non-active columns when editing */
.kanban-column {
  transition: opacity .2s ease;
  padding-top: 0px;
}

.planner-layout.show-detail .kanban-column {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.planner-layout.show-detail .kanban-column.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  max-width: 100%;
}














.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  font-size: 0.875rem;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 1202;
  box-shadow: 0 -12px 32px -22px rgba(15, 23, 42, 0.6);
  display: none;
}

.cookie-banner a {
  color: #c4e1ff;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-banner__button {
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.15s ease, background-color 0.2s ease;
}

.cookie-banner__button--accept {
  background: #22c55e;
  color: #042f14;
}

.cookie-banner__button--accept:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

.cookie-banner__button--decline {
  background: rgba(148, 163, 184, 0.25);
  color: #f8fafc;
}

.cookie-banner__button--decline:hover {
  background: rgba(148, 163, 184, 0.4);
  transform: translateY(-1px);
}

 div#user-type-options {   padding: 1rem 0rem;
}

.role-buttons button {
  display: block;
  min-width: 25%;
  margin: 1rem auto;
  text-align: left;
  padding-left: 1rem;
}

.role-buttons button.selected {
  background-color: #428e70;
  border-color: #08656f;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
  display: block;

}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
  }
}
#define-content-head{    display: flex
;}
.define-content-head-text{
    margin-left: 3rem;
}

.define-hybrid-card {
  background-color: #ffffff;

  display: grid;
  gap: 2rem;

  background: radial-gradient(circle, transparent 25%, #ffffff  26%),linear-gradient(45deg, transparent 46%, #fafafa 47%, #fafafa 52%, transparent 53%), linear-gradient(135deg, transparent 46%, #fafafa 47%, #fafafa 52%, transparent 53%);
        background-size: 2em 2em;
   
        opacity: 1
}

.define-hybrid-section {
  display: grid;
  gap: 0.75rem;
}

.define-hybrid-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
}

.define-hybrid-text {
  color: #4b5563;
  line-height: 1.6;
}

.define-hybrid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.define-hybrid-ikigai-card {
  background: #f8fafc;
  border-radius: var(--border-radius-md);
  padding: 1rem;
  border: 1px solid #e2e8f0;
  display: grid;
  gap: 0.5rem;
}

.define-hybrid-subheading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.define-hybrid-focus {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--border-radius-md);
  color: #047857;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: baseline;
}

.define-hybrid-focus span:last-child {
  font-weight: 400;
  color: #1f2937;
}

.define-hybrid-quote {
  border-left: 4px solid var(--phase-define);
  margin: 0;
  padding: 0.75rem 1rem;
  background: #f1f5f9;
  border-radius: var(--border-radius-md);
  color: #1f2937;
  font-style: italic;
}

.define-hybrid-theme-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.define-hybrid-theme {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  background: #eef2ff;
  color: #3730a3;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 1px 2px rgba(79, 70, 229, 0.18);
}

@media (max-width: 768px) {
  .define-hybrid-card {
    padding: 1.5rem;
  }

  .define-hybrid-grid {
    grid-template-columns: 1fr;
  }
}


.career-question-answer {
  background: #f9fdfb;
  border: 1px dashed #8bc34a;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.career-question-answer p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
}

.qa-question {
  margin-bottom: 6px;
  font-style: italic;
  color: #1f2937;
}

.qa-answer {
  margin: 0;
  color: #0f172a;
}

.qa-label {
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: #0f172a;
}

/* === Bottom Nudges (minimal blurb) === */

#phase-bottom-nudge-slot
{     text-align: left;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    padding: 0rem 3rem;
    background: #fffce8;
    border: 1px solid #faf4c6;
    border-radius: 41px;
    margin-top: 7px;}

.phase-bottom-nudge-slot-wrap{position: sticky;
    bottom: 0;    overflow: hidden;
display: none;
animation: fadeInNudge 1s ease-in forwards;
}
.phase-bottom-nudge-slot-wrap.phase-bottom-nudge-active{

  display: block;
}
.phase-bottom-nudge {
    padding: 2px;
  opacity: 0;display: flex;    flex-direction: column;
  animation: fadeInNudge 1s ease-in forwards;
}

.phase-bottom-nudge .nudge-source {
  display: inline-block;

  font-size: 0.8rem;
  font-style: normal;
  color: #8a8a8a;
}
.phase-bottom-nudge-content{display: flex;     justify-content: center; 
;}

.phase-bottom-nudge-content  video.gl-video {
    /* height: 50px; */
 margin-bottom: -50px;
    padding-top: 5px;
    margin-right: -81px;
    z-index: 1;
}

select {
  display: block;
  min-height: 47px;
  min-width: 200px;
  border-radius: 3px;
  border: 1px solid #ccc;
  font-size: 1rem;
  padding: .8rem;
}

.info-icon {

  padding: 3px;
}

.info-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

@keyframes fadeInNudge {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}





.about-section h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.about-section .lead {
  font-size: 1.125rem;
  margin: 0.75rem 0 1rem;
}

.about-section .h4 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-section ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.about-section li {
  margin: 0.35rem 0;
}

.about-section .note {
  font-size: 0.95rem;
  color: #444;
  margin-top: 0.5rem;
}

.about-section .tagline {
  border-left: 4px solid #222;
  padding-left: 0.75rem;
  margin: 1.5rem 0 0;
  font-style: italic;
}

.about-section .signoff {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
}