@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: rgb(36, 98, 164);
}

#login-img{
  background-image: url("../img/dipt.jpg");
   /* background-position: center; */
  background-repeat: no-repeat;

}


table {
  white-space: nowrap;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .v-banner{
        visibility:visible;
    }
    .h-col{
      display: none;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
/* @media only screen and (min-width: 600px) {...} */

/* Medium devices (landscape tablets, 768px and up) */
/* @media only screen and (min-width: 768px) {...} */

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .v-banner{
        visibility: hidden;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
/* @media only screen and (min-width: 1200px) {...} */


#message-alert {
    -webkit-animation: cssAnimation 10s forwards;
    animation: cssAnimation 10s forwards;
    position: fixed; 
    bottom:7%; 
    right: 1%; 
    z-index: 10000;
}

@keyframes cssAnimation {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes cssAnimation {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

td{
    word-wrap:break-all;
}

li a {
  text-decoration: none; /* Removes default underline */
  color: aliceblue;
}

li a:hover {
  text-decoration: underline;
  color: #000;
}

.animated-underline {
  position: relative;
  text-decoration: none;
}

.animated-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transform: scaleX(0); /* Initially hidden */
  transform-origin: bottom right;
  transition: transform 0.3s ease-out; /* Smooth transition */
  color: rgb(255, 255, 255);
}

.animated-underline:hover::after {
  transform: scaleX(1); /* Expands to full width */
  transform-origin: bottom left;
}