/* file: style.css */
.v-center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90%;
}

/* Color definitions */
:root {
  --color-gray: #999;
  --color-blue: #4472C4;
  --color-orange: #ED7D31;
  --color-border: #666;
  --color-blue-light: #1da7e0;
  --color-gray-dark: #666;
}

/* Box styles */
.box-white {
  width: 40px;
  height: 40px;
  background-color: white;
  border: 3px solid black;
  box-sizing: border-box;
}

.box-gray {
  width: 40px;
  height: 40px;
  background-color: var(--color-gray);
  border: 3px solid black;
  box-sizing: border-box;
  margin-top: -48px;
}

.box-blue {
  width: 40px;
  height: 40px;
  background-color: var(--color-blue);
  border: 3px solid black;
  box-sizing: border-box;
  margin-top: -48px;
}

.box-orange {
  width: 40px;
  height: 40px;
  background-color: var(--color-orange);
  border: 3px solid black;
  box-sizing: border-box;
  margin-top: -48px;
}

.box-black {
  width: 40px;
  height: 40px;
  background-color: black;
  border: 3px solid black;
  box-sizing: border-box;
  margin-top: -48px;
}

.box-yellow {
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  border: 3px solid black;
  box-sizing: border-box;
  margin-top: -48px;
}

/* Text styles for annotations */
.annotation-text {
  font-family:  "Space Mono", "Hack",sans-serif;
  font-size: 32px;
  color: black;
  font-weight: bold;
  background-color: #FFD700;
  padding: 2px 6px;
  line-height: 1.6;
}

/* Arrow styles */
.arrow-orange {
  stroke: black;
  stroke-width: 3;
  fill: none;
}

.arrowhead-orange {
  fill: black;
}

/* Image shadow effect */
.img-shadow {
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Scenario card styling */
.scenario-card {
  background-color: white;
  padding: 100px 100px 100px 100px;
  box-shadow: 16px 16px 0px rgba(54, 54, 54, 0.8);
  max-width: 1000px;
  margin: 100px auto;
  position: relative;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.7em;
  line-height: 1.8;
  color:#1a1a1a;
}

.scenario-card .scenario-number {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 1.5em;
  font-weight: bold;
  color: #6b6a6a;
  font-family: "Courier New", Courier, monospace;
}



/* Title slide styling */
.reveal .slides section.title-slide {
  text-align: left;
}

.reveal .slides section.title-slide h1.title {
  background-color: rgba(50, 50, 50, 0.9);
  color: white !important;
  padding: 30px 40px;
  text-align: left;
  display: inline-block;
  margin-bottom: 20px;
}

.reveal .slides section.title-slide .author,
.reveal .slides section.title-slide p.author {
  background-color: rgba(50, 50, 50, 0.9);
  color: white !important;
  padding: 20px 30px;
  text-align: left;
  display: inline-block;
  margin-top: 0;
}

/* Title slide footer styling */
.reveal .slides section:first-child .footer,
.reveal .slides section:first-child .footer a {
  color: white !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.reveal .slides section:first-child .footer a:hover {
  color: #f0f0f0 !important;
}

/* Background overlay for specific slides with blur and color effect */
.reveal .slides section.blurred-bg .slide-background-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(100, 150, 200, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.reveal .backgrounds .slide-background.blurred-bg {
  filter: blur(3px);
}

.reveal .backgrounds .slide-background.blurred-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(100, 150, 200, 0.5);
  pointer-events: none;
}

