#custom-header-nav-item{
    margin: 0 16px;color: #fff;
    background: #68d0fc;
    border-color: #68d0fc;
}

.login-page {
    background: url("../images/login-back.jpg") no-repeat;
    background-size: cover;
}

.login-page .table td, .table th {
    padding: 0.60em;
    cursor: pointer;
}

.login-page .login-box {
    margin-top: 50px;
}

.identColor {
    color: #68d0fc !important;
}
 .marquee {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      color: white; /* Text color */
      padding: 10px 0; /* Padding for spacing */
    }

    .marquee span {
      display: inline-block;
      animation: scroll 10s linear infinite; /* Slower animation (increased duration) */
    }

    /* Keyframes for scrolling effect */
    @keyframes scroll {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* Stop animation on hover */
    .marquee:hover span {
      animation-play-state: paused;
    }