/* style.css */

* {
  box-sizing: border-box;
}
td a {
  /* text-decoration: none; */
  color: black;
}
td:first-child  {
  /* text-decoration: none !important; */
  color: black;
}
.btn-wd-icon.clearsearch {
  margin: 0 10px;
}

.clearsearch input, .clearsearch .input-field{
  border: none;
}
.error {
  color: red;
  font-size: 18px;
  font-weight: 600;
/* text-align:center; */
}

/* /////////////////////////////////////////////loader */
.loader-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f265;
}

.loader-track {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  animation: rotate 1.5s infinite linear;
}

.loader-fill {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #000080;
  animation: fill 1.5s infinite ease-in-out;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


@keyframes rotate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

@keyframes fill {
  0% {
      transform: scale(0);
  }
  50% {
      transform: scale(1);
  }
  100% {
      transform: scale(0);
  }
}

/* /////////////////////////////////////////////loader end */
.text-right{
  text-align: right;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #b9d1ea;
}

.main-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #000080;
  color: white;
}

.logo img {
  max-width: 5vw;
  margin: 10px;
}

.title {
  text-align: center;
  padding: 0 10px;
  text-transform: uppercase;
}

.title p {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

footer {
  color: black;
  padding: 20px;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.5;
  margin-top: auto;
}

.footer-content {
  font-size: 16px;
}

@media screen and (max-width: 720px) {
  .logo img {
    max-width: 15vw;
    margin: 10px;
  }
  .title p {
    font-size: 14px;
  }

  .main-header {
    display: block;
    text-align: center;
  }
}