/* css/learning-outcomes.css - Learning outcomes specific styles */

/* Learning Outcome Content Styling */
.learning-outcome-description {
  background-color: rgba(217, 217, 217, 0.1);
  padding: 15px;
  border-left: 4px solid #D9D9D9;
  margin-bottom: 30px;
}

.learning-outcome-description p {
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  font-size: 18px;
  margin: 0;
}

.learning-outcome-evidence h3,
.learning-outcome-conclusion h3 {
  font-family: 'PixelOperatorBold', monospace;
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #fff;
}

.evidence-item {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.evidence-item:last-child {
  border-bottom: none;
}

.evidence-item h4 {
  font-family: 'PixelOperatorBold', monospace;
  font-size: 24px;
  margin-bottom: 15px;
  color: #D9D9D9;
}

.evidence-item p {
  font-size: 16px;
  line-height: 1.4;
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  color: #fff;
  margin-bottom: 15px;
}

.learning-outcome-conclusion {
  background-color: rgba(217, 217, 217, 0.05);
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.learning-outcome-conclusion p {
  font-size: 16px;
  line-height: 1.4;
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  color: #fff;
  margin-bottom: 15px;
}

.learning-outcome-conclusion p:last-child {
  margin-bottom: 0;
}

/* Button Styles */
.logo-iterations-button,
.interview-details-button,
.content-strategy-button,
.research-details-button,
.wireframe-details-button,
.design-process-button,
.project-plan-button,
.user-test-button,
.gitlab-repo-button,
.five-second-test-button,
.ab-test-button,
.github-repo-button,
.github-repo-petchi-button,
.evidence-button,
.feedback-pdf-button,
.dashboard-link-button,
.version-control-button,
.user-testing-button,
.live-demo-button {
  background-color: #D9D9D9;
  color: #000;
  padding: 12px 20px;
  font-family: 'PixelOperatorBold', monospace;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  border-right: 3px solid #888888;
  border-bottom: 3px solid #888888;
  box-shadow: 2px 2px 0px #000000;
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.1s;
  margin-top: 20px;
}

.evidence-button,
.feedback-pdf-button,
.dashboard-link-button,
.version-control-button {
  padding: 10px 15px;
  font-size: 14px;
}

.logo-iterations-button:hover,
.interview-details-button:hover,
.content-strategy-button:hover,
.research-details-button:hover,
.wireframe-details-button:hover,
.design-process-button:hover,
.project-plan-button:hover,
.user-test-button:hover,
.gitlab-repo-button:hover,
.five-second-test-button:hover,
.ab-test-button:hover,
.github-repo-button:hover,
.github-repo-petchi-button:hover,
.evidence-button:hover,
.feedback-pdf-button:hover,
.dashboard-link-button:hover,
.version-control-button:hover {
  background-color: #e5e5e5;
}

.logo-iterations-button:active,
.interview-details-button:active,
.content-strategy-button:active,
.research-details-button:active,
.wireframe-details-button:active,
.design-process-button:active,
.project-plan-button:active,
.user-test-button:active,
.gitlab-repo-button:active,
.five-second-test-button:active,
.ab-test-button:active,
.github-repo-button:active,
.github-repo-petchi-button:active,
.evidence-button:active,
.feedback-pdf-button:active,
.dashboard-link-button:active,
.version-control-button:active {
  background-color: #aaaaaa;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  box-shadow: 0px 0px 0px #000000;
  top: 2px;
  left: 2px;
}

/* Detail Window Content Styles */
.iterations-header,
.interview-header,
.strategy-header,
.research-header,
.wireframe-process-header {
  margin-bottom: 30px;
}

.iterations-header h1,
.interview-header h1,
.strategy-header h1,
.research-header h1,
.wireframe-process-header h1 {
  font-family: 'Upheaval', monospace;
  font-size: 50px;
  margin: 0;
  line-height: 1;
  color: #D9D9D9;
}

.iterations-header h2,
.interview-header h2,
.strategy-header h2 {
  font-family: 'PixelOperatorBold', monospace;
  font-size: 30px;
  margin-top: 10px;
  color: #fff;
}

.iterations-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.iteration-stage,
.wireframe-stage {
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.iteration-stage:last-child,
.wireframe-stage:last-child {
  border-bottom: none;
}

.iteration-stage h3,
.wireframe-stage h3 {
  font-family: 'PixelOperatorBold', monospace;
  font-size: 24px;
  margin-bottom: 15px;
  color: #D9D9D9;
}

.stage-images {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  justify-content: flex-start;
}

.stage-images img {
  width: auto;
  height: 250px;
  max-width: 400px;
  border: 2px solid #D9D9D9;
  cursor: zoom-in;
  object-fit: contain;
}

.iteration-stage > img,
.wireframe-stage > img {
  width: auto;
  height: 250px;
  max-width: 400px;
  border: 2px solid #D9D9D9;
  cursor: zoom-in;
  margin-bottom: 15px;
  object-fit: contain;
}

.iteration-stage p,
.wireframe-stage p {
  font-size: 16px;
  line-height: 1.4;
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  color: #fff;
  margin: 0;
}

.interview-details-window p,
.content-strategy-window p,
.research-details-window p,
.wireframe-details-window p {
  font-size: 18px;
  line-height: 1.4;
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  color: #fff;
  margin-bottom: 20px;
}

.interview-details-window h3,
.content-strategy-window h3,
.research-details-window h3 {
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #D9D9D9;
  font-weight: bold;
}

.content-strategy-window h4,
.research-details-window h4 {
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #D9D9D9;
  font-weight: bold;
}

.interview-qa p {
  font-size: 18px;
  line-height: 1.4;
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  color: #fff;
  margin-bottom: 20px;
}

.interview-qa strong {
  color: #D9D9D9;
  font-weight: bold;
  font-size: 20px;
  display: block;
  margin-bottom: 0px;
}

.interview-details-window ul,
.content-strategy-window ul,
.research-details-window ul {
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  font-size: 18px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.interview-details-window li,
.content-strategy-window li,
.research-details-window li {
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.research-details-window strong {
  color: #D9D9D9;
  font-weight: bold;
}

.research-details-window ol {
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  font-size: 18px;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.version-control-container {
  margin-top: 30px;
}

.version-control-text p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: 'Space Mono', 'Inconsolata', 'Courier New', monospace;
  color: #fff;
}


.learning-outcomes-window {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1400px;
  height: 85vh;
  background-color: #121212;
  border: 6px solid #D9D9D9;
  z-index: 3000;
  font-family: "VT323", monospace;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.learning-outcomes-window .project-content-container {
  display: flex;
  flex: 1;
  overflow: hidden;
  min-height: 0; 
}

.learning-outcomes-window .project-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  padding-bottom: 100px;
  height: auto; 
  min-height: 0; 
}

.learning-outcome-conclusion {
  background-color: rgba(217, 217, 217, 0.05);
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
  margin-bottom: 100px; /* Extra bottom margin for scrolling */
}