/* Global */
html, body {
  overflow: hidden;
  height: 100%;
}

body {scrollbar-color: rgba(255,0,0,.5) rgba(255,255,255,0);top:0;margin: 0;padding: 0;display: flex;height: 100%; font-family: "mundial", sans-serif; font-weight: 500; }


#main-menu-container {
  position: fixed;
  z-index: 5000;
  height: 100%;
  width: 100%;
  max-height: 800px;
  background-color: rgba(255,255,255,.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#main-menu {
  width: 50%;
  padding:5%;
  display: flex;
  flex-direction: column;
  gap: 3.5vw; /* Space between buttons */
  align-items: center;
  background-color:white;
  border: red 1px solid;
    max-width:500px;

}

.main-menu-button {
  display: flex;               /* enables centering */
  justify-content: center;     /* centers horizontally */
  align-items: center;         /* centers vertically */
  text-align: center;          /* ensures text inside wraps centered if needed */
  
  text-decoration: none;       /* removes underline */
  border: red solid 1px;
  width: 100%;
  padding: 0.75rem 1rem 1rem 1rem;
  font-size: 4vw;
  
  color: red;
  border-radius: 50px;
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  box-sizing: border-box;
  letter-spacing:0.3em;
}


#main-menu .main-menu-button:last-child {
color:white;
background-color:red;
}


.main-menu-button:hover {
opacity:0.75;}


/* Side-Bar */

#side-bar {

    width: 30%;
    max-width: 300px;
    background-color: white;
    transition: transform 0.3s ease;
    height: 100%;  /* Full viewport height */
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid red;
    z-index:999;
}

#side-bar.closed {
    transform: translateX(-100%);
}

#style-expand {display:none;}



#side-bar .section-content {
    flex-grow: 1;
    width: 100%;
    height: calc(100% - 15vw);  /* Subtract header height */
        min-height: calc(100% - 150px); /* Minimum height based on header height */

    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box; /* Include padding/border in the element's total width/height */
}

#side-bar #header {
    background-color: red;
    width: 100%;
    padding: 7.5%;
    position: sticky;
    top: 0;
    z-index: 10;
        box-sizing: border-box;

    height: 15vw; 
}

#side-bar .section {position: relative; width: 100%; cursor: pointer; background-color: transparent; border-bottom: 1px solid red; letter-spacing: .1em; color: red;}
#side-bar .section:last-child {margin-bottom:10vw;}

#side-bar .section-header {display: flex; justify-content: center; align-items: center; width: 80%; transition: margin-top 0.5s ease; padding:5% 10% 6% 10%;}
#side-bar .section-header.active {margin-top: 5%;margin-bottom: 5%; transform: scale(1.1); /* Scale the image by 10% */transition: transform 0.5s ease;}
#side-bar .section-header.active img {    transition: transform 0.5s ease; /* Ensure the scale change is animated */}

#side-bar .section-body {width: 0; /* Initially, it has no width */height: 0; /* Initially, it has no height */ /* Hide overflow */opacity: 0; /* Hide content initially */}
#side-bar .section-body.open {width: 100%; /* Expand to full width (or a specific value like 300px) */ /* Adjust height automatically based on content */opacity: 1; /* Make it visible */}
#side-bar .section-body.animate {transition: height .5s ease, opacity .5s ease;}

#side-bar .section-body .info-container {width:80%; margin:0 auto;margin-top:10%;margin-bottom:10%;}
a {text-decoration: none; /* Remove underline from the link */}

.selection-container {margin-top:10%;padding:0;border: 1px red solid;}
.overview-text {padding: 5% 0%;display: flex; /* Enable flexbox layout */justify-content: center; /* Center items vertically */opacity:1; width: 100%;box-sizing: border-box;text-align: center;font-weight:600; font-size: 2vw;align-items: center;}
.sample-text {outline: none;padding:5% 0%;width:100%;outline: none;font-family: "mundial", sans-serif; font-weight: 600;color: red;letter-spacing: .1em;margin:0 auto; display: flex; /* Enable flexbox layout */justify-content: center; /* Center items vertically */opacity:1;box-sizing: border-box;text-align: center;font-weight:600; font-size: 2vw;align-items: center;}
.sample-text::placeholder {color: red; opacity:0.5;}
input {outline: none; /* Remove outline */border: none; /* Remove border */}

input:focus { outline: none; /* Ensure no outline on focus */border: none; /* Ensure no border on focus */}

.selector {margin-left: 5%; /* Add some spacing between the image and the text */}
#side-bar .section-body .text-box {opacity:1; width: 100%;padding: 5%;border: 1px solid red;border-bottom: none;box-sizing: border-box;text-align: center;font-size: 1.6vw}
#side-bar .section-body .text-box:last-of-type {border-bottom: 1px solid red;}

#top-bar {display:none;}

.block-count, .type-height {padding-left:.75vw;}

#side-bar .section-body .image-box {width: 100%;padding: 7.5%;border: 1px solid red;box-sizing: border-box;text-align: center;font-size: 1.6vw;margin-top:10%;margin-bottom:10%;}     
#side-bar .section-header img {max-width: 100%;height: auto; transition: width 1s ease;}
#side-bar img, #side-bar svg {padding-top:2%;}

#bottom-bar {display:none;}

       
#side-bar.closed {transform: translateX(-100%); /* Move the sidebar off-screen */transition: transform 0.3s ease;}
    
.block-diagram .block {fill:none;opacity:0.75;stroke:red;stroke-width:6px;}
 
button, a {font-family: "mundial", sans-serif; font-weight: 500; letter-spacing: .1em;font-size: 1.6vw; }
.download {border-radius:10vw;text-decoration:none;color:white;width:100%; background-color:red;padding:7.5%; margin-top:10%;border:none;display: flex;outline: none;justify-content: center;}
.download:hover {opacity:0.75;border 1px red solid;}

/* Specific styles for buttons inside #top-buttons */
.type-mode-buttons {
  display: flex;
  width: 100%; /* Full width for the buttons container */
  border-bottom: 1px red solid;
    border-top: 1px red solid;

}


.buttons {
  position: fixed;
  top: 2vw;
  right: 2vw;
  display: flex;
  gap: 1.3vw;
  z-index: 999; /* ensure visibility */
}



.buttons a {
  position: relative;
  display: flex;
  padding: 1vw 1.7vw;
  text-decoration: none;
  align-items: center;
  justify-content: left;
  border: red 1px solid;
  border-radius: 5vw;
  background-color: white;
  cursor: pointer;
  font-size: 1.5vw;
  color: red;
  letter-spacing: 0.5vw;
  line-height: 1;
  text-align: center;
  text-indent: 0.5vw;
}


.buttons a:hover {opacity:0.75;}

.type-mode-buttons button {
  flex: 1; /* Ensure both buttons share equal width */
  border: none; /* Remove default button border */
  background-color: white; /* Button background color */
  color: red; /* Button text color */
  padding: 10px 0; /* Vertical padding for the buttons */
  cursor: pointer; /* Show pointer on hover */
  text-transform: uppercase; /* Make text uppercase */
  text-align: center; /* Center the text horizontally */
    border-right: 1px red solid;
}

.type-mode-buttons button:last-child {
  border-right: none; /* Remove the right border for the last button */
}

.type-mode-buttons button:hover {
  background-color: red; /* Change background color on hover */
  color: white; /* Change text color on hover */
}


.type-mode-buttons button.active {
    background-color: red; /* Active button stays red */
    color: white; /* Text stays white */
}


.section-header img {
    width: 100%; /* Default width, will be overridden by specific styles below */
}


      
      
      .arrow-button {
      max-height:50px;
            max-width:50px;

    position: absolute;
    top: 2vw; /* Adjust to the top of the sidebar */
    left: 2vw; /* Adjust to the right side */
    padding:1vw;
    width: 4vw; /* Button width */
    height: 4vw; /* Button height */
    border-radius: 50%; /* Circular shape */
    background-color: red; /* Red background */
    fill:white;
    font-size: 20px; /* Arrow size */
    border: none; /* No border */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:1000;	
    cursor: pointer;
}

  .arrow-button svg {
  width: 2vw; /* Set a reasonable width */
  height: 2vw; /* Set a reasonable height */
}
      .menu-button {
        max-height:50px;
    position: absolute;
    top: 2vw; /* Adjust to the top of the sidebar */
    right: 2vw; /* Adjust to the right side */
    height: 4vw; /* Button height */
        padding:1vw;
font-size:1.6vw;
    background-color: red; /* Red background */
    color: white; /* White color for the arrow */
    border: none; /* No border */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:1000;	
border-radius:10vw;line-height:0px;
    cursor: pointer;
}

.arrow-button:hover {
opacity:0.75;
}


.menu-button:hover {
opacity:0.75;
}
.arrow-button:focus {
    outline: none; /* Remove the focus outline */
}
      
      
      
.slider-container {
    position: relative;
    width: 90%; /* Matches slider width */
    display: flex;
    justify-content: center;
}

      /* Floating buttons */
      .floating-buttons {

          max-width: 150px;
          width: 15%;
          padding: 0.5%;
          position: absolute;
          bottom: 2%;
          right: 2%;
          display: flex;
          justify-content: space-around; /* Space them out evenly */
          z-index: 999;
          background-color: white;
          border: red 1px solid;
      }
      
      /* Floating slider */
      .floating-slider {
          max-width: 255px;
          width: 35%;
          position: absolute;
          bottom: 2%;
          left: 2%;
          display: flex;
          flex-direction: column;
          align-items: center; /* Center horizontally */
          justify-content: center; /* Center vertically */
          z-index: 999;
          background-color: white;
          border: red 1px solid;
          opacity: 1;
          padding: .45% 0%;
      }
      
    #spacing-slider {
     -webkit-appearance: none;
    appearance: none;
    border: none;
    width: 100%; /* Full width inside the container */
    height: 2px;
    background-color: red;
    border-radius: 5px;
    outline: none;
    touch-action: none;
    margin: 11.5% auto;
        position: relative;
    z-index: 2; /* Ensure slider stays above markers */
}



/* Force Hardware Acceleration (fix rendering glitches) */
#spacing-slider::-webkit-slider-thumb {
    will-change: transform;
}



/* Parent div for markers */
.slider-markers {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1; /* Change from -1 to 1 */
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* Prevents interaction */
}

/* Individual tick mark */
.marker {
    position: absolute; 
    width: 2px;
    height: 8px;
    background: red;
    top: 50%; /* Move marker to the middle */
    transform: translateY(-50%); /* Perfect vertical centering */
}

      
      
      
      #spacing-slider::-webkit-slider-thumb {
          appearance: none;
          -webkit-appearance: none;
          width: 1.5vw;
          height: 1.5vw;
          background-color: white;
          outline: 2px red solid;
          border-radius: 50%;
          cursor: pointer;
              padding: 3%; /* Adds an invisible hit area */
              z-index:1000;
touch-action: manipulation; 
      }
      
      #spacing-slider::-webkit-slider-thumb:hover {
          background-color: red;
      }
      
      #spacing-slider::-moz-range-thumb {
          -webkit-appearance: none;
          appearance: none;
          width: 20px;
          height: 20px;
          background-color: white;
          border-radius: 50%;
          cursor: pointer;
          border: 2px red solid;
      }
      
      #spacing-slider::-moz-range-thumb:hover {
          background-color: red;
      }

#spacing-slider {
    touch-action: none; /* Prevents accidental page scrolling */
}




    .floating-buttons svg:hover {
opacity:0.75;
}

.sidebar-button {
    width:30%;
    margin:2%;
    fill: red;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}



.mobile-menu-button {
  display: none;

}
   
svg .overlay {opacity: 0.5;}

#main-body {
display:none;
  position: relative; /* Add this */
  margin-left: 30%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.main-containers {height:100%;overflow-y:auto;}

.overview-container, .sample-container {opacity:1; box-sizing: border-box;margin: 0 auto; padding:6vw 3vw; width:100%;display: flex;justify-content: center;flex-wrap: wrap;}


.individual-container {
  position: absolute; /* Changed from fixed to absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100; /* Still ensures it appears on top inside #main-body */
  background-position: center;
  background-image: radial-gradient(circle, rgba(255, 0, 0, 0.5) 1px, transparent 1px);
  background-size: 3vw 3vw;
  transition: background-size 0.5s ease;
}  

.overview-container {border-bottom:1px dashed red;}
.overview-container:last-child {margin-bottom:20%;}
.sample-container {align-items: center; /* Center vertically */
  position: relative; /* Ensures absolute children are positioned correctly */
}
.sample-container.animate {transition:width .5s ease;}

.overview-container .content-box {margin: 3vw 3vw;}
.sample-container .content-box {margin: 3vw 0vw;}
.individual-container .content-box {margin:0;transition: height .5s ease;}

.content-box {
  position: relative; /* Ensure it's the reference point for the number container */
  display: inline-block; /* Ensure it's only as wide as its content */

  height: 16vw;
  width: auto;
  display: flex;
  flex-direction: column; /* Arrange content vertically */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  transition: transform 0.5s ease;
}

.content-box svg {transition: fill 0.5s ease; height: 100%; fill: red;}
.content-box.hovered {transform: scale(1.05);}

.word-wrapper { position: relative; /* Ensure it's the reference point for the number container */
  display: inline-block; /* Ensure it's only as wide as its content */
flex-shrink:0;margin 0vw; padding-bottom:2vw;display: flex; /* Arrange letters and spacers in a row */align-items: center; /* Align content vertically */

}

.letter-spacing {
 position: relative; /* Ensure it's the reference point for the number container */
  display: inline-block; /* Ensure it's only as wide as its content */
  height: 16vw; /* Match the height of .content-box */
}

.number-container {
  position: absolute; /* Keeps it independent from layout */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, 0); /* Ensure perfect centering */
  height: 1.25vw;
  width: max-content; /* Only take as much space as needed */
  min-width: 100%; /* Ensures it stays within bounds */
  font-size: 1vw;
  color: red;
  text-align: center;
  opacity: 1;
  pointer-events: none;
  z-index: 10;
  white-space: nowrap; /* Prevents wrapping */
   user-select: none; /* Standard property */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none;
}


.content-box .number-container {  
  bottom: -2vw;  
  border-left: 1px red dotted;
  border-right: 1px red dotted;
}

.letter-spacing .number-container {  
  bottom: -3.5vw;
 
}

.word-wrapper .word-total {  
  position: absolute;
  top: 1vw; /* Adjust this based on testing */
  left: 50%;
  transform: translateX(-50%);
  color: red;
  border-left: 1px red solid;
  border-right: 1px red solid;
  text-align: center;
  width: max-content;
  min-width: 100%;
}

.overlap-layer {
  position: absolute; 
  background-color: rgba(255, 0, 0, 0.25);
  pointer-events: none;
  z-index: 1000;
}

    .floating-buttons {
          max-width: 150px;
          width: 23%;
          padding: 0.5%;
          position: absolute;
          bottom: 15px;
          right: 15px;
          display: flex;
          justify-content: space-around; /* Space them out evenly */
          z-index: 999;
          background-color: white;
          border: red 1px solid;
          opacity: 1;
      }

.content-box.shrink {transform: scale(0.95); /* Non-hovered boxes shrink */opacity: 0.8; /* Optional: reduce opacity for visual effect */}
        
small {letter-spacing: 1px;}
.white {fill: white;}

#mobile-type-menu {
display:none;
}

@media (min-width: 1000px) {

.buttons {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 13px;
  z-index: 999; /* ensure visibility */
}

.buttons a {
 
  padding: 10px 18px;
 letter-spacing:4px;
  text-indent:4px;

  font-size: 15px;

}

#main-menu {padding:50px;gap:35px;}

#main-menu .main-menu-button {
font-size:40px;
}


#side-bar #header {
    
    height: 150px;
}
#side-bar .section-body .text-box {font-size: 16px;}
.overview-text {font-size: 20px}
.sample-text {font-size: 20px}
button {font-size: 16px; }
#main-body {margin-left: 300px;}
.arrow-button {left: 20px; /* Adjust to the right side */top:20px; padding:10px;height:40px;width:40px;}
.menu-button {right: 20px; /* Adjust to the right side */top:20px;font-size: 16px;height:40px;width:75px;}
.floating-buttons {bottom:15px; right:15px;padding:4px;}
.floating-slider {bottom:15px; left:15px;padding:2px;}
#spacing-slider {height: 2px; /* Adjust based on viewport width */}
#spacing-slider::-webkit-slider-thumb {width: 15px;height: 15px;}

}

@media (max-width: 599px) {
   .buttons {display:none;}


#mobile-type-menu-container {
  position: fixed;
  z-index: 5000;
  height: 100%;
  width: 100%;
max-height:800px;
  background-color: rgba(255, 255, 255, 0.8);
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#mobile-type-menu {
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 80%; /* Set the width of the menu, or adjust to your liking */
  height: 85%;
  max-height:120vw;
  border: 1px solid red;
  opacity: 1;
}
#mobile-type-menu .section-content{
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  }
  
#mobile-type-menu .section {
  width: 100%;
  padding: 5%;
  border-bottom: 1px solid red;
  background-color: white;
  display: flex;
  flex-direction: column;
  box-sizing: border-box; /* Prevent padding from affecting width */
}

#mobile-type-menu .section:last-child {
  border-bottom: 0;
}

#mobile-type-menu .mobile-header {
width:100%;  background-color: red;
  padding:6% 18%;
    box-sizing: border-box; /* Prevent padding from affecting width */

}

#mobile-type-menu img {
padding-top:2%;
  width: 100%;
}



#top-bar {
  border: 1px red solid;
  height: 8vw;
  position: absolute;
  width: 50%;
  display: flex;
  z-index: 1000;
  background-color: white;
  top: 3vw;
  left: 3vw;
}

#top-bar .mobile-header {
  height: 100%;
  display: flex;
  background-color: red;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 38%;
  padding: 3% 0%;
}

#top-bar .mobile-header img {
  height: 100%; /* Prevent it from overflowing */
}

#top-bar .section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62%;
  height: 100%;
  padding: 2.75% 0%;
  box-sizing: border-box;
}

#top-bar .section img {
  height: 100%;
  width: 100%;
  object-fit: contain; /* Keeps the image proportional */
  transition: transform 0.5s ease, opacity 0.5s ease;
  box-sizing: border-box;
}



    .menu-button {
    display:none;

}

.individual-container {

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100% - 26vw); /* Subtract the height of the bottom bar */
  background-position: center;
  background-image: radial-gradient(circle, rgba(255, 0, 0, 0.5) 1px, transparent 1px);
  background-size: 30px 30px;
}


.mobile-menu-button {
  display: block; /* Ensure the button is visible */
  background-color: red;
  outline: none;
  width: 8vw;
  padding: 1.5%;
  padding-top: 2%;
  height: 8vw;
  border: none;
  position: fixed; /* Fix the button at the top-right */
  top: 3vw; /* Adjust based on top-bar height */
  right: 3vw; /* Position button near the right edge */
  box-sizing: border-box;
  border-radius: 50%;
    border:1px white solid;
z-index:1000;
}

.mobile-menu-button svg {
  fill: white;
  width: 50%;
}

.mobile-menu-button:hover {opacity:0.75}


.arrow-button:hover {
opacity:0.75;
}


.menu-button:hover {
opacity:0.75;
}

#side-bar {display:none;}
#main-body {margin-left: 0%;width: 100%;  height: calc(100% - 26vw); /* Subtract bottom-bar height */}
.arrow-button {display:none;}
.floating-buttons {width:20%;bottom:3vw; right:3vw;}
.floating-slider {width:30%; bottom:3vw; left:3vw;}

        
#bottom-bar .image-box {padding:0% 10%;box-sizing: border-box;align-items: center;text-align: center;font-size: 1.6vw;}
#bottom-bar img, #side-bar svg {padding-top:2%;}

#bottom-bar {
    z-index: 999;
    display: flex;
    flex: 1 1 30%;
    align-items: center;
    background-color: white;
    position: fixed;
    width: 100%;
    height: 26vw;
    bottom: 0;
    gap: 3%;
    padding: 3%;
    border-top: 1px solid red;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    transform: translateY(0); /* Default: visible */
}

#bottom-bar.closed {
    transform: translateY(100%); /* Slide down off-screen */
}
#bottom-bar .section-container {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  justify-content: flex-start; /* Align items to the top of the container */
  align-items: center; /* Keep items horizontally centered */
  text-align: center;
  color: red;
  opacity: 1;
  flex: 1; /* Allows all sections to share equal width */
  height: 100%; /* Fill the height of the bottom-bar */
  box-sizing: border-box;
  letter-spacing: 0.1em;
  padding-top: 0; /* Ensure no extra padding at the top */
}

#bottom-bar .text-container, #bottom-bar .selection-container{
  display: flex;
  flex-direction: column; /* Stack text boxes vertically */
  justify-content: center;; /* Ensure equal spacing for text boxes */
  align-items: stretch; /* Make text boxes stretch to container width */
  flex: 1; /* Fills the remaining space in section-container */
  width: 100%;
  border: 1px solid red;
  border-bottom: none;
  height: auto; /* Automatically adjusts height based on available space */
  box-sizing: border-box;
  
}

#bottom-bar .section-container:nth-child(2) { /* Targets the middle section */
    flex: 0 1 auto;  /* Prevents it from growing too much */
    max-width: 40%; /* Adjust this based on your layout */
    min-width: 30%; /* Ensures it doesn't collapse too much */
}

.type-mode-buttons {border:1px red solid;}
.type-mode-buttons button {
  flex: 1; /* Ensure both buttons share equal width */
  border: none; /* Remove default button border */
  background-color: white; /* Button background color */
  color: red; /* Button text color */
  padding: 5% 0; /* Vertical padding for the buttons */
  cursor: pointer; /* Show pointer on hover */
  text-transform: uppercase; /* Make text uppercase */
  text-align: center; /* Center the text horizontally */
    border-right: 1px red solid;
    font-size:2vw;
}

.number-container {
  height: 2vw;
  font-size: 1.75vw;

}

.content-box .number-container {  
  bottom: -3.5vw;  

}

.letter-spacing .number-container {  
  bottom: -5.75vw;
 
}

.word-wrapper .word-total {  
  position: absolute;
  top: 2vw; /* Adjust this based on testing */
  left: 50%;
  transform: translateX(-50%);
  color: red;
  border-left: 1px red solid;
  border-right: 1px red solid;
  text-align: center;
  width: max-content;
  min-width: 100%;
}



#main-menu {
  width: 65%;
  padding:7%;
  display: flex;
  flex-direction: column;
  gap: 5vw; /* Space between buttons */
  align-items: center;
  background-color:white;
  border: red 1px solid;
    max-width:500px;

}

.main-menu-button {
  display: flex;               /* enables centering */
  justify-content: center;     /* centers horizontally */
  align-items: center;         /* centers vertically */
  text-align: center;          /* ensures text inside wraps centered if needed */
  
  text-decoration: none;       /* removes underline */
  border: red solid 1px;
  width: 100%;
  padding: 0.75rem 1rem 1rem 1rem;
  font-size: 5.5vw;
  color: red;
  border-radius: 50px;
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  box-sizing: border-box;
}




.overview-container .content-box {margin: 5vw 5vw}
.sample-container .content-box {margin: 6vw 0vw;}

.sample-container {padding-top:70px; padding-bottom:70px;}
.overview-container {padding-top:12vw; padding-bottom:12vw;}

#bottom-bar .section-container .block-diagram {padding: 9% 7.5%;border: 1px red solid;max-width: 100%;  /* Prevents the SVG from overflowing */height: auto; /* Maintains aspect ratio */display: block; /* Prevents unexpected inline behavior */}

#bottom-bar .download {font-size:2vw;border-radius:10vw;text-decoration:none;color:white;width:100%; background-color:red;padding:5%; margin-top:10%;border:none;display: flex;outline: none;justify-content: center;}
.overview-text, .sample-text {padding: 2% 0%;display: flex; /* Enable flexbox layout */justify-content: center; /* Center items vertically */opacity:1; width: 100%;box-sizing: border-box;text-align: center;font-weight:600; font-size: 3vw;align-items: center;}


#bottom-bar .text-box {
  display: flex; /* Make the text-box a flex container */
  justify-content: center; /* Center items horizontally */
  align-items: center; /* Center items vertically */
  flex: 1; /* Equal height for both text boxes */
  width: 100%;
  font-size: 2vw; 
  border-bottom: 1px solid red;
  box-sizing: border-box;
}

#bottom-bar .selection-container {border-bottom: 1px red solid;}


}
