* {
    margin: 0;
    padding: 0;
}


body {
  background-color:rgb(47, 47, 99); /* Background color */
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

@media screen and (min-width: 700px) {
  body {
      display: none; /* Show body when screen width is less than or equal to 767px */
      /* Add your mobile-specific styles here */
  }
}

body::-webkit-scrollbar {
    display: none;
}



.user-navigations {
    
    top: 0;
    right: 0;
    left: 0;
    height: 250px;
    margin: 0px 10px;
    border-radius: 0px 0px 20px 20px;
    z-index: 100; /* Ensure it's on top of other elements */
}

.modes {
    display: inline-block; /* Change display to inline-block */
    text-align: start;
    
}

.modes input[type="checkbox"] {
    display: inline-block;
    vertical-align: middle;
    background-color: #f0f0f0;
    padding: 5px;
    margin-bottom: 20px; /* Increase margin-bottom for spacing */
}

.modes label {
    display: inline-block;
    vertical-align: middle;
    background-color: rgba(122, 184, 135, 0.2);
    color: wheat;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px; /* Add margin-bottom for spacing */
}

/* Hide default checkbox */
.modes input[type="checkbox"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    outline: none;
    cursor: pointer;
}

/* Customize appearance when checked */
.modes input[type="checkbox"]:checked {
    background-color: #00FF7F;
}

/* Style labels */
.modes label {
    padding-left: 10px;
    cursor: pointer;
}

.pro-mode-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 200px;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    color: #0a0906;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pro-mode-content {
    text-align: center;
    cursor: pointer;
}

#close-btn {
    margin-top: 10px;
    padding: 8px 20px;
    background-color: #00FF7F;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.continue-pro{
    padding: 10px;
    font-weight: bold;
    border-radius: 20px;
    background-color: goldenrod;
    cursor: pointer;
}

.user-navigations-profile{
    display: flex;
    justify-content: center;
    background-color:  rgb(17, 17, 41);
}

.user-info-container-profile{
    color: wheat;
    
}

.user-profile{
    margin-left: 1em;
    font-size: 1.5em;
    font-weight: bold;
}

.mode-indicator{
    padding: 2em;
    color: #00FF7F;
    margin-left: -2em;
}

#crown{
    font-size: 15px;
    color: goldenrod;
    padding: 0%;
    border: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0); /* Start and end position */
    }
    40% {
      transform: translateY(-10px); /* Bounce up */
    }
    60% {
      transform: translateY(-10px); /* Bounce down */
    }
  }
  
  #crown {
    animation: bounce 2s infinite; /* Apply the bounce animation */
  }
  


#user-details{
    color: wheat;
    border: none;
    font-size: 2em;
    cursor: pointer;
}

.balance-container {
    display: flex;
    align-items: center;
    flex-direction: column;  /* Adjust padding as needed */
  }

 .balance-amount{
    display: flex;
 }

  #eye-icon{
    border: none;
    font-size: 15px;
    margin-top: -1em;
}


.container {
    position: relative;
    text-align: center;
    font-size: 1.2em;
    margin: 10px;
    margin-top: 1em;
    color: wheat;
    letter-spacing: 2px;
    border-radius: 20px;
    padding: 10px; /* Add padding instead of margin */
    border-bottom: none;
    border-left: none;
    border-right: none;
    background-color: rgb(17, 17, 41);
    height: 70px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 5px rgba(14, 14, 14, 0.4);
}

.text {
    opacity: 0; /* Initially hide all texts */
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #00FF7F;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0.5em;
}

  
  .fade-in {
    animation: fadeIn 2s forwards; /* 2s duration, forwards to keep final state */
  }
  
  .fade-out {
    animation: fadeOut 2s forwards; /* 2s duration, forwards to keep final state */
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }

/* User Information Container */
.user-info-container {
    background-color:  rgb(17, 17, 41);
    
    color: wheat;
    padding: 10px;
    text-align: center;
    height: 100px;
    margin: 320px 10px 0; /* Adjust margin to leave space for user-navigations */
    border-radius: 20px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'montserrat', sans-serif;
    box-shadow: 0px 0px 10px 5px rgba(14, 14, 14, 0.4);
}

/* Horizontal Scroll View Container */
/* Horizontal Scroll View Container */
.scroll-view-container {
    margin: 15px;
    overflow-x: auto;
    white-space: nowrap;
    margin-top: -3px; /* Adjust margin to leave space for user-navigations and user-info-container */
    min-height: calc(50vh - 300px); /* Set a minimum height based on the viewport height */
    overflow-y: hidden;
    height: 500px;
    scroll-snap-type: x mandatory; 
}

/* Media query for smaller screens */
@media only screen and (max-width: 768px) {
    .scroll-view-container {
        min-height: calc(40vh - 200px); /* Adjust minimum height for smaller screens */
    }
}

/* Media query for even smaller screens */
@media only screen and (max-width: 576px) {
    .scroll-view-container {
        min-height: calc(30vh - 150px); /* Adjust minimum height for even smaller screens */
    }
}



.scroll-items-container {
  display: flex;
  overflow-x: auto; /* Change from scroll to auto */
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px;
  scroll-snap-type: x mandatory;
}

.scroll-items-container::-webkit-scrollbar {
    display: none;
}

.scroll-item:first-child {
    margin-left: 20px; /* Adjust the value as needed */
}

/* Add your survey topics with horizontal scrolling */
.scroll-item {
  width: 300px;
  height: 350px;
  margin-right: 20px;
  margin-bottom: 10px;
  padding: 10px;
  

  background: linear-gradient(to bottom, rgba(222, 184, 135, 0.2) 50%, rgb(20, 20, 46))50%;
  filter: brightness(1);
  scroll-snap-align: start;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
/* Media query for mobile view */
@media only screen and (max-width: 600px) {
    .scroll-items-container {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .scroll-item {
        margin-right: 10px;
        margin-bottom: 0;
    }
}

.scroll-item:nth-child(1) {
  background-image: url('./assets/fileicons/transportation\ and\ mobility.jpeg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(2) {
  background-image: url('./assets/fileicons/family\ dynamics.jpeg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(3) {
  background-image: url('./assets/fileicons/climate\ change.jpeg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(4) {
  background-image: url('./assets/fileicons/education\ and\ learning.jpeg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(5) {
  background-image: url('./assets/fileicons/leisure\ activities\ and\ hobbies.jpeg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(6) {
  background-image: url('./assets/fileicons/social\ media\ usage.webp');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(7) {
  background-image: url('./assets/fileicons/cultural\ identity.jpeg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(8) {
  background-image: url('./assets/fileicons/elderly\ care\ and\ support.webp');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(9) {
  background-image: url('./assets/fileicons/community\ service\ and\ facilities.webp');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(10) {
  background-image: url('./assets/fileicons/housing\ and\ accomodation.jpeg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(11) {
  background-image: url('./assets/fileicons/food\ and\ dietary\ habits.jpeg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(12) {
  background-image: url('./assets/fileicons/digital\ literacy.webp');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(13) {
  background-image: url('./assets/fileicons/civic\ engagement.jpeg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(14) {
  background-image: url('./assets/fileicons/well-being\ and\ mental\ health.webp');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(15) {
  background-image: url('./assets/fileicons/financial\ literacy.jpg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(16) {
  background-image: url('./assets/fileicons/health\ access\ and\ services.jpg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(17) {
  background-image: url('./assets/fileicons/employment\ and\ job\ satisfaction.jpg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(18) {
  background-image: url('./assets/fileicons/enviromental\ conervation.jpeg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(19) {
  background-image: url('./assets/fileicons/community\ safety.jpg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item:nth-child(20) {
  background-image: url('./assets/fileicons/travell\ preference.jpeg');
  background-size: cover;
  filter: brightness(0.7);
}

.scroll-item-details{
  color: gold;
  font-size: 2em;
  max-width: calc(100% - 20px); /* Allow space for padding */
    margin: 0; /* Remove default margin */
    overflow: hidden; /* Add ellipsis (...) for overflow text */
    white-space: normal;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 20px;
    
}


/* Footer Container */
.footer-container {
    background-color: rgb(17, 17, 41);
    box-shadow: 0px 0px 10px 5px rgba(14, 14, 14, 0.2);
    color: wheat;
    text-align: center;
    padding: 10px;
    margin: 10px;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    width: calc(100% - 20px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: lighter;
    z-index: 400;
}

.footer-text{
    margin-top: 2px;
    letter-spacing: 0.08em;
    font-size: 15px;
    color: wheat;
    cursor: pointer;
}

#footer-icons{
    padding: 1em;
    border: solid 2px;
    border-radius: 50px;
}

.fas{
    padding: 0.5em;
    border: solid 2px wheat;
    border-radius: 20px;
    font-size: 1.4em;
    color: wheat;
    cursor: pointer;
}




#user-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, #0a0906, #331e01);/* Semi-transparent background */
    display: none;
    z-index: 1000;
}

#user-container.show {
    display: block;
}

a:focus {
    outline: none;
  }
  


  .chart-container {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Hide vertical scrollbar */
    white-space: nowrap;
    margin-top: 4em;
    scroll-snap-type: x mandatory; /* Prevent wrapping of chart elements */
}

.chart-container::-webkit-scrollbar {
    display: none; /* Hide the scrollbar in WebKit browsers */
}

.chart {
    flex-shrink: 0; /* Ensure charts don't shrink */
    width: 100%; /* Adjust the width of each chart as needed */
    margin-right: 20px;
    scroll-snap-align: start; /* Adjust the margin between charts */
}


.testimonials{
    width: 40px;
    border-radius: 50px;
    border: solid 5px rgba(0, 0, 0, 0.7) ;
}

.image-container {
    text-align: right;
}

.text-left{
    display: flex;
    align-items: center;
    background-color: wheat;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    border-radius: 50px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: bold;
    height: 45px;
    margin-left: 3em;
}

.text-left img.testimonials {
    margin-left: 5px;/* Adjust the value as needed */
}

.text-right img.testimonials {
    margin-right: 5px; /* Adjust the value as needed */
}

.text-right{
    display: flex;
    align-items: center;
    background-color: burlywood;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    border-radius: 50px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: bold;
    margin-right: 3em;
    height: 45px;
}
.testimonial-textin{
    margin-left: 1em;
    font-size: 12px;
}
.testimonial-textin-right{
    margin-right: 1em;
    font-size: 12px;
}
.testimonial-container{
    margin: 10px;
    display: flex;
    flex-direction: column;
}

#last-testimonial {
    transition: opacity 1s ease-in-out; /* Smooth transition for opacity */
    position: absolute;
    top: 0;
    left: 0;
}


@keyframes fade {
    0% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  .fade-in {
    animation: fade 5s forwards; /* Fade in for 5 seconds */
  }
  
  
  
.wallet-container{
    background-repeat: no-repeat;
}

.wallet-text{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin-top: 2em;
    font-family: 'montserrat', sans-serif;
    color: wheat;
    font-size: 20px;
}

.balance{
    margin-top: 0.5em;
    font-weight: bold;
    font-size: 2em;
}

.button-container {
    margin-top: 2em;
    text-align: center; /* Center its child elements */
}

.withdrawal-button {
    display: inline-block; 
    background-color: #00FF7F;
    padding: 1em 6em;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
    font-size: 1.2em;
    cursor: pointer;
}

.recent{
    text-align: center;
    margin-top: 1em;
    font-family: 'montserrat', sans-serif;
    color: burlywood;
}

.error-transact{
    font-weight: bold;
    text-align: center;
    color: burlywood;
    margin-top: 1em;

}

.transaction-image {
    display: flex;
    justify-content: center; /* Horizontally center the image */
    align-items: center; /* Vertically center the image */
     /* Adjust the height as needed */
  }
  
  .transact {
    max-width: 100%; /* Ensure the image doesn't exceed its container */
    max-height: 100%; /* Ensure the image doesn't exceed its container */
  }

  .check-transaction{
    text-align: center;
    color: rgb(204, 66, 66);
    margin-top: -1em;
    height: 200px;
  }

  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(17, 17, 41); /* semi-transparent white background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;  /* Ensure the loader is on top of other content */
  }

  .spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #FFF;
    border-top-color: transparent;
    position: absolute;
    top: 50%;
    left: 45%;
    border-right: 3px solid transparent;
    animation: spin 0.4s linear infinite; /* Fix animation name */
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .rating {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    margin-top: 2em;
  }
  
  .rating input[type="radio"] {
    display: none;
  }
  
  .rating .star-label {
    cursor: pointer;
    padding: 5px;
  }
  
  .rating .star-label::before {
    content: "\2605";
    font-size: 2em;
    color: lightgray;
  }
  
  .rating input[type="radio"]:checked ~ .star-label::before {
    color: gold;
  }
  
  .rating-feedback {
    display: none; /* Initially hide the feedback */
    position: absolute; /* Position the feedback */
    top: 420px; /* Adjust as needed to position it above the stars */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    padding: 10px; /* Add rounded corners */
    font-size: 14px; /* Adjust font size */
    color: #333;
    font-weight: bold; /* Set text color */
  }
  
  
  

  .share-experience{
    text-align: center;
    font-size: 25px;
    color: wheat;
    font-family: 'montserrat', sans-serif;
    font-weight: bold;
    margin-top: 1em;
  }

  .report{
     /* Center horizontally */
  width: 300px;
  padding: 1.5em;
  border: none;
  color: #0a0906;
  font-family: 'montserrat', sans-serif;
  background-color:rgba(255, 255, 255, 0.8);
  
  }

  .reporting{
    display: flex;
    justify-content: center;
  }

  .mailing{
    text-decoration: none;
    color: rgb(82, 82, 194);
  }

  #submitButton{
    display: block; /* Make it a block-level element */
    margin: 0 auto;
    padding: 10px 40px;
    border: none;
    background-color: #00FF7F;
    margin-top: 10px;
    border-radius: 5px;
    font-family: 'montserrat', sans-serif;
  }

  #feedbackContainer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure the container appears above other elements */
  }
  
  #closeButton {
    display: block; /* Make it a block-level element */
    margin: 0 auto;
    cursor: pointer;
    padding: 5px 20px;
    border: none;
    background-color: #00FF7F;
    margin-top: 10px;
    border-radius: 5px;
    font-family: 'montserrat', sans-serif;
    margin-top: 2em;
  }
  
  #feedbackText {
    margin-top: 10px;
  }

  
  .container-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto;
    height: 600px;
    width:300px ;
    margin-top: -100px; /* Center horizontally */
  }
  
  .about, .contact {
    margin-bottom: 30px; /* Add some space between sections */
  }
  
  .about h2, .contact h2 {
    color: burlywood;
  }
  
  .about p, .contact p {
    color: #666;
  }

  .withdraw-info{
    margin: 10px;
    background-color: rgba(45, 45, 73, 0.1);
    padding: 10px;
  }
  
  #withdrawalFormContainer {
    display: none; /* Hide the form container initially */
    position: fixed; /* Fixed position to overlay on top of the page */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Center the container */
    background-color: burlywood; /* White background */
    padding: 20px;
    border-radius: 5px;
    
    width: 300px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1); 
    font-family: 'montserrat', sans-serif;/* Add a shadow */
    z-index: 500; /* Ensure the container appears above other content */
  }
  
  #withdrawalFormContainer input[type="text"],
  #withdrawalFormContainer input[type="number"],
  #withdrawalFormContainer input[type="email"] {
    width: 100%; /* Full width */
    padding: 15px; /* Add padding */
    margin-bottom: 10px; /* Add spacing between inputs */
    border: none; /* Add a border */
    border-radius: 5px; /* Add border radius */
    box-sizing: border-box;
    background-color: wheat; /* Ensure padding and border are included in the width */
  }
  
  #withdrawalFormContainer button {
    display: block; /* Make the button a block element */
    width: 100%; /* Full width */
    padding: 20px; /* Add padding */
    background-color:#00FF7F ; /* Green background */
    color: #0a0906; /* White text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Add border radius */
    cursor: pointer; /* Show pointer cursor */
  }
  
  #withdrawalFormContainer button:hover {
    background-color:#1af386 ; /* Darker green on hover */
  }
  

  #withdrawalFormContainer .close-form {
    margin-top: 2em;
    background: rgb(25, 25, 58);
    color: white;
    border: none;
    padding: 1em 1em;
    border-radius: 5px;
    cursor: pointer;
}

#withdrawalFormContainer .close-form:hover{
  background: rgb(45, 45, 73);
}

/* HTML: <div class="loader"></div> */
.loading {
  display: none;
  width: 50px; /* Adjust the size of the loader */
  height: 50px; /* Adjust the size of the loader */
  border: 4px solid rgba(37, 176, 155, 0.2); /* Adjust the border width and color */
  border-radius: 50%;
  border-top: 4px solid #25b09b; /* Adjust the color of the moving part */
  animation: spin 1s linear infinite;
  position: absolute;
  margin-top: 10em;
  margin-left: 13em;
  z-index: 1000;
  left: -3rem;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


.error-container {
  display: none; /* Initially hide the error container */
  /* Add other styles as needed */
}

.dark-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 999; /* Ensure it's above other content */
}

.error-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color:  wheat;
  color: #0a0906;
  border-radius: 10px;
  height: 400px;
  width: 250px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#errorContainer p {
  margin-bottom: 20px;
}

#errorContainer button {
  padding: 10px 20px;
  background-color: #ffffff;
  color: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}



.process-error{
  font-family: 'montserrat', sans-serif;/* Add a shadow */
}

.transaction-buttons{
  display: flex;
  flex-direction: column;
  gap: 1em;
}

button#ActivateButton{
  background-color: #00FF7F;
  
}

button#closeErrorButton{
  background: rgb(25, 25, 58);
  color: wheat;
}

#error-icon{
  color: red;
  border: solid red 2px;
  padding: 12px 15px;
  border-radius: 50px;
}

.activation-fee{
  font-weight: bold;
}

.pending-transaction-container {
  background-color:rgb(47, 47, 99); /* Background color */
  border: 5px solid #6c757d; /* Border color */
  border-radius: 8px; /* Border radius */
  padding: 20px; /* Padding */
  margin-top: 20px; /* Margin from the top */
  text-align: center;
  margin: 40px;/* Center align text */
}

.pending-transaction-container p {
  font-size: 18px; /* Font size */
  color: gold; /* Text color */
  font-family: 'montserrat', sans-serif;
}

#pending-icon{
  border: none ;
  color: wheat;
  padding: none;
  font-size: 2em;
  margin: 0;
}

.pending-transaction-container {
  position: relative;
}

#deleteIcon {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  border: none;
}

.register-close {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
}

.register-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.form {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #25b09b;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #25b09b;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #1a8b77;
}

#loginLink,
#registerLink {
  text-align: center;
}

#loginLink a,
#registerLink a {
  color: #25b09b;
}

#loginLink a:hover,
#registerLink a:hover {
  text-decoration: underline;
}


.welcome-container {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: 'montserrat', sans-serif;
}

.welcome-page {
  display: none;
  text-align: center;
  padding: none;
  background-color:rgb(47, 47, 99);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  width: 100%;
}

.active {
  display: block;
}

.button-container {
  margin-top: 20px;
}

.previous-button,
.Sign-button,
.next-button {
  font-size: 16px;
  border: none;
  border-radius: 20px;
  border: solid;
  color: white;
  cursor: pointer;
  background-color: none !important;
  transition: background-color 0.3s ease;
  
}



/* .container-buttons{
  display: flex;
  gap: 4em;
  margin-top: 5em;
} */

h1{
  color: goldenrod;
}

.survey-text{
  color: #25b09b
}

.welcome-img{
  margin-top: 4em;
}

.survey-welcome-text{
  color: wheat;
  font-size: 1.1em;
}

.install-app{
  position: absolute;
  color: wheat;
  font-size: 10px;
  cursor: pointer;
  background-color: rgb(17, 17, 41);
  padding: 5px 20px;
  border-radius: 20px;
}

.installer-icon{
  width: 20%;
  border-radius: 50px;
  margin-left: 1em;
}

.report-feedback{
  background-color: #ccc;
  height: 35px;
  border: none;
  color: #0a0906;
  font-size: 1.1em;
  font-family: 'montserrat', sans-serif;
  margin: 1em;
}

.container-install{
  margin-top: 1em;
  margin-left: 1em;
}

#submitButton-feedback{
  margin: 1em;
}

.sliding-container {
  color: #0a0906;
  background-color: #00FF7F;
  text-align: center;
  margin: 40px;
  padding: 1.5em;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow effect */
  margin-top: 9.5em;
  cursor: pointer;
  font-weight: bolder;
}

.question-tag{
  color: #0a0906;
}

.survey-timer {
  position: absolute;
  margin-top: -1.8em;
  margin-left: 0.1em;
  font-size: 1.1em;
  font-weight: bold;
  color: wheat;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 4px 5px;
  border-radius: 20px;
}

#survey-time-logo{
  border: none;
  padding: 0;
  font-size: 1.1em;
}

.survey-instruction {
  position: absolute;
  margin-top: -1.8em;
  left: 10em;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 4px 5px;
  border-radius: 10px;
}

.survey-instruction i {
  border: none;
  padding: 0;
  font-size: 1.1em;
  margin-top: -1.8em;
  
}

.ratings-for, .reward-earn{
  color: wheat;
}

.declaration{
  position: absolute;
  margin-top: -2.4em;
  width: 100%;
  margin-left: -0.5em;
}

.declaration-b{
  position: absolute;
  margin-top: 2.5em;
  width: 100%;
  margin-left: -0.5em;
}

.instructions-to-start{
  z-index: 400;
  margin-top: -30em;
  font-size: 1.5em;
  background-color:  rgb(17, 17, 41);
  color: wheat;
  padding: 50px 40px 70px 40px;
  font-family: 'montserrat', sans-serif;
  margin-bottom: 1em;
  display: none;
}

.confirm-start{
  background-color: #00FF7F;
  text-align: center;
  margin-top: 2em;
  padding: 20px 20px;
  cursor: pointer;
  color: #0a0906;
  
}

#cancel{
  background-color: #666;
  text-align: center;
  margin-top: 1em;
  padding: 20px 20px;
  cursor: pointer;
}

.instructions-start-start{
  display: flex;
  justify-content: center;

}




.transportation-mobility {
  display: none;
}

.transportation-mobility.active {
  display: block;
}

/* Additional CSS for styling */
.question-tittle {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: gray;
  font-family: 'montserrat', sans-serif;
}

.time-left{
  font-size: 18px;
  color: rgb(184, 66, 66);
  font-family: 'montserrat', sans-serif;
  font-weight: bold;
}

.expected-reward{
  font-size: 18px;
  color: gray;
  font-family: 'montserrat', sans-serif;
  font-weight: bold;
}

.question-page {
  margin-bottom: 20px;
}

.questioning {
  font-size: 20px;
  font-weight: bold;
}

.choices {
  margin-top: 10px;
}

.option {
  padding: 20px;
  margin-bottom: 5px;
  border-radius: 20px;
  cursor: pointer;
  margin: 20px;
  text-align: center;
  background-color: rgb(17, 17, 41);
  color: #ccc;
  font-size: 1.2em;
  font-family: 'montserrat', sans-serif;
}

.selected {
  background-color: #00FF7F;
  color: black;
  
}


.inputs-all {
  margin-top: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  margin-left:2em;
}

.next-buttton-box{
  display: flex;
  justify-content: center;

}
.submit-button-box{
  display: flex;
  justify-content: center;
}

.submit-button{
  width: 200px;
  padding: 15px 0px;
  font-size: 1.2em;
}

.container-button{
  display: flex;
  justify-content: space-between;
}
.next-button,
.previous-button,
.Sign-button{
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 200px;
  font-size: 1.2em;
}
  /* .Sign-button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  
} */


.next-button:hover {
  background-color: #0056b3; /* Darker blue color on hover */
}
.previous-button:hover {
  background-color: #0056b3; /* Darker blue color on hover */
}

.Sign-button:hover {
  background-color: #0056b3; /* Darker blue color on hover */
}

.questioning{
  color: #ccc;
  margin-left: 1em;
  font-size: 30px;
  font-family: 'montserrat', sans-serif;
}

.starting-container-tag{
  text-decoration: none;
}

.survey-message-box {
  display: flex;
  justify-content: center; /* Align items horizontally to the center */
  align-items: center;
  height: 50vh; /* Ensure the box covers the entire viewport height */
}

#survey-message {
  text-align: center; 
  font-size: 1.5em;
  color: #ccc ;
  font-family: 'montserrat', sans-serif;/* Center-align text within the message box */
}

.ended-img {
  display: block; /* Ensure the image is centered */
  margin: 0 auto;
  width: 100%; /* Center the image horizontally */
}


.closing-long{
  height: 300px;
}
