body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.auto-transition {

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 135deg, #0276DB, white);
  animation: color-transition 5s ease-in-out infinite;
}
.end-transition {
  background: white;
}
@keyframes color-transition {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.Salute {
  height: 100vh;
}

#t-Paragraph_1 {
  position: absolute;
  width: auto;
  color: #000000;
  text-decoration: none;
  font-family: 'Bahnschrift',Arial;
  font-size: 54.0pt;
  font-style: normal;
  font-weight: 400;
  text-align: center;

}
#t-Paragraph_2 {
  position: block;
  width: auto;
  color: #000000;
  text-decoration: none;
  font-family: 'Bahnschrift',Arial;
  font-size: 54.0pt;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}
.moving-div {
  animation: moveUp 3s forwards;
}
@keyframes moveUp {
  from {
    bottom: 0; /* Start from the bottom */
  }
  to {
    bottom: 70%; /* Move to the center */
  }
}
#videoInput{
  text-align: left;
  margin-top: 4%;
  
}
#s-Input_1 {
  text-align: center;
  animation: color-transition 2s ease-in-out;
}

.path svg,
.svgroot svg, svg {
  width: 5%;
  height: 5%;
  position: absolute;
}

.button {
  display: block;
  background-color: #0276DB; /* Green */
  border: none;
  color: white;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
  transition-duration: 0.4s;
}

.button:hover {
  background-color: #029edb; /* Darker Green */
  color: white;
}

#s-Path_2 {
  color: #000000;
  font-family: 'Bahnschrift',Arial;
  font-size: 15.0pt;
  vertical-align: middle;
  font-style: normal;
  text-align: center;
  width: auto;
}
#advancebuttom{
  width:100%;
  display: block;
  text-align: center;
  margin-top: 40%;
}

#waterUI {
  position: fixed;
  width: 100%;
  height: 100%;
  justify-content: center; /* Center horizontally */
  overflow-x: hidden;
}
.trasition-hidden {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 135deg, white, white);
  animation: color-transition 3s ease-in;
}
#uploadedVideo {
  max-width: 100%;
  max-height: 100%;
  display: flex;
} 
#RiverMask, #waterRiver, #landRiver {
  max-width: 100%;
  max-height: 100%;
  display: flex;
} 
.playContainer {
  display: flex; /* Use flexbox */
  justify-content: center;
  align-items: center;
  height: 100%;
}
.column {
  flex: 1; /* Each column takes up equal space */
  padding: 2%;
  display: flex; /* Use flexbox for inner alignment */
  flex-direction: column; /* Align items vertically */
  align-items: center; /* Center items horizontally */
}
.divider {
  position: absolute;
  top: 15%;
  bottom: 10%;
  left: 50%; /* Position the line in the middle */
  width: 3px; /* Width of the line */
  background-color: #0276DB; /* Color of the line */
  /* Adjust the follo wing properties to style the line as needed */
  /* height: 100%; */ /* Uncomment this line if you want the line to span the entire height */
  /* margin-left: -1px; */ /* Uncomment this line if you want to position the line precisely at the center */
}

.modal {
  display: none	;
  position: fixed; /* Position the modal */
  z-index: 1; /* Ensure it appears on top of other content */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scrolling if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Black background with transparency */
}

.modal-content {
  background-color: #fefefe; /* White background */
  margin: 15% auto; /* Center the modal vertically and horizontally */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Set the width */
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.columnDesign{
  padding: 10%;
}

#t-Paragraph_3 {
  position: block;
  width: 100%;
  color: #000000;
  font-family: 'Bahnschrift',Arial;
  font-size: 18.0pt;
  font-style: normal;
  font-weight: 300;
}

.custom-button:hover {
  cursor: pointer; /* Cursor style on hover */
  /* Add any other styles you want to apply when hovering over the button */
}
.hidden {
  display: none;
}

.show {
  display: block;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Define a class that uses the flicker keyframes */
.flicker {
  animation: flicker 4s infinite;
}

video {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 10%;
  position: relative;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white; /* or rgba(255, 255, 255, 0.9) for transparency */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Make sure it's on top of everything */
}

.extremhidden {
  display: none !important;
}

#resultsWATER {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem;
  width: 100%;
  height: auto;
}

#resultsWATER.hidden {
  display: none;
}

/* Basic responsive behavior */
@media (max-width: 768px) {
  
  #toAction {
    display: block;
    margin-bottom: 10%;
  }

  #t-Paragraph_2{
    font-size: 28.0pt;
    font-weight: 400;
  }
  #t-Paragraph_3 {
    font-size: 10.0pt;
    font-weight: 300;
  }

  #resultsWATER {
    flex-direction: column;
    align-items: center;
  }

  .divider {
    display: none;
  }
}

 .results-container { padding: 1rem; display: flex; flex-direction: column; gap: 1rem; } .content-wrapper { display: flex; flex-direction: column; gap: 1rem; } .media-column, .output-column { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; } video { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); } .action-button { padding: 0.6rem 1.2rem; font-size: 1rem; border: none; border-radius: 8px; background-color: #0276DB; color: white; cursor: pointer; } .action-button:hover { background-color: #025bb5; } .divider { display: none; } .output-block { background: #f9f9f9; padding: 1rem; border-radius: 12px; min-height: 150px; } .svg-button { align-self: center; background: transparent; border: none; cursor: pointer; } .hidden-link { display: none; } @media (min-width: 768px) { .content-wrapper { flex-direction: row; } .divider { display: block; width: 1px; background: #ccc; margin: 0 1rem; } } 

 #advanceButton {
  display: inline-block; /* make it inline-block */
  margin-top: 2%;
}
.media-column {
  text-align: center; /* center inline children */
}
