
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  /* background: #f8f9fa; */
  padding: 5px 5px 6px 5px;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 18s linear infinite;
}

@keyframes marquee-scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

 .card{
  border-radius: 14px !important;
 }

 .card-header{
  border-top-left-radius: 14px !important;
  border-top-right-radius: 14px !important;
  overflow: hidden !important; /* Ensures corners are rounded */
 }

 .card-footer{
  border-bottom-left-radius: 14px !important;
  border-bottom-right-radius: 14px !important;
  overflow: hidden !important; /* Ensures corners are rounded */
 }

.logo-title {
  white-space: nowrap; /* Prevents wrapping but allows for line breaks */
  color: #05479c;
  font-size: 1.3rem;
  margin: 0;
  text-align: center; /* Centers the text */
  display: inline-block;
  }

  .profile-image {
    width:80px;
    height:80px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    /* border: 2px solid #28a745 */
}

.user-details p{
    font-size: 1rem;
    margin-bottom: .5rem
}
  

.latestNews {
  position: absolute;
  background-color: rgb(33, 2, 172);
  /* background-image: linear-gradient(90deg, rgb(33, 2, 172), rgb(161, 12, 136)); */
  z-index: 9;
  padding: 0px 10px;
  color: #fff;
  font-weight: 900;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loader-container {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

.loader-text {
  color: white;
  margin-top: 10px; /* Add spacing below the loader */
  font-size: 16px;
}

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

/* For Navbar */

.navbar-brand {
  font-weight: bold;
}
.logo-text {
  font-size: 20px;
}
.navbar-toggler:hover {
  color: #fff !important;
  text-decoration: none;
  border: none !important;
}

.nav-link{
    font-size: 14px;
}

.toggle-password {
  float: right;
  cursor: pointer;
  margin-right: 10px;
  margin-top: -32px;
}

.g-recaptcha {
  transform: scale(0.9);
  transform-origin: 0 0;
}

  
  @media (max-width: 767px){
  .logo-title {
      font-size: 1.1em;
      padding-top:4px;
  
  }
  .navbar-toggler {
    display: inline-block; /* Show the toggle button */
  }
  
  .btn-login {
    display: block; /* Hide the login button on mobile */
    font-size: 14px;
  }

  .navbar{
    padding-top:0px !important;
    padding-bottom: 0px !important;
  }
}

@media (min-width: 768px) {
    .navbar-toggler {
        display: none; /* Hide the toggle button */
      }
    
      .btn-login {
        display: inline-block; /* Show the login button on larger screens */
      }
  }

@media(max-width:600px){
    .logo img{
        width:40px;
        margin-top: 5px;
    }
}

@media only screen and (max-width: 500px) {
  .g-recaptcha {
    transform: scale(0.8);
  }
}
