.search-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: 50px;  /* Adjust as needed to space out from header */
  background: rgb(255, 255, 255);
  height: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body{
  background-image: url(../imgs/prize-bg.jpg); /* URL of your background image */
  background-size: cover; /* Ensures the background image covers the entire element */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents the background image from repeating */
  border-radius: 8px; /* Gives rounded corners */
}

.search-container {
  /* background-image: url('https://img.freepik.com/free-vector/dark-gradient-background-with-copy-space_53876-99548.jpg?t=st=1719258461~exp=1719262061~hmac=a74e28384e9bcd66aa68374230d3d0c388f58c2f381cdd6090246f6a95322033&w=996'); */
  background-color: #0046ffa8;
  background-size: cover; /* Ensures the background image covers the entire element */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents the background image from repeating */
  border-radius: 8px; /* Gives rounded corners */

}


.search-form {
  display: flex;
  gap: 10px;
}

input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  width: 250px;
  transition: border-color 0.3s;
}

input[type="text"]:focus {
  border-color: #0056b3;
  outline: none;
}

.search-button {
  padding: 10px 20px;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.search-button:hover {
  background-color: #0056b3;
}

.results {
  margin-top: 20px;
}

.no-results {
  color: #cc0000;
  margin-top: 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.checkmark-container {
  display: flex;
  align-items: center; /* Aligns items vertically in the center */
  justify-content: start; /* Aligns content to the start of the flex container */
}

.checkmark-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #aad154;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.checkmark-stem, .checkmark-kick {
  position: absolute;
  background-color: white;
  border-radius: 2px;
}

.checkmark-stem {
  width: 5px;
  height: 22px;
  left: 60%;
  transform: translateX(-50%) rotate(45deg);
  bottom: 20px;
  animation: stem-grow 0.3s ease-in-out forwards;
}

.checkmark-kick {
  width: 5px;
  height: 12px;
  left: 37%;
  transform: translateX(-30%) rotate(-45deg);
  bottom: 20px;
  /* animation: kick-grow 0.5s ease-in-out forwards 0.4s;  */
}

@keyframes stem-grow {
  0% {
      height: 0;
  }
  100% {
      height: 22px;
  }
}

@keyframes kick-grow {
  0% {
      height: 0;
  }
  100% {
      height: 12px;
  }
}


.footer{
text-align: center;   
}

.pdff{
  all: initial;
  display: flex;
  justify-content: center; /* Center horizontally */
}

.document-viewer {
  /* display: none; */
  width: 250mm; /* A4 width */
  min-height: 297mm; /* A4 height */
  padding: 26mm;
  border: 1px solid #ddd;
  /* box-shadow: 0 0 5px rgba(0,0,0,0.1); */
  background: white;
  overflow-y: auto;
  box-sizing: border-box;
}

.divbtn{
display: flex;
justify-content: center;
}
.divbtn button {
  background-color: #007bff;
  border: none;
  color: white;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}


.logo1{
  width: 200px;
}

.div2{
  width: 200px;
}

table, td, th {
  border: 1px solid;
}

table {
  width: 100%;
  border-collapse: collapse;

}

th, td {
  width: 150px; 
  /* height: 50px;  */
  text-align: center; 
  vertical-align: middle;
}



/* style */