.marquee-container {
  background-color: rgb(88, 152, 209);
  color: white;
  margin-top: 10px;
  padding-top: 8px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.marquee-container a {
  /* marquee tag*/
  color: white;
  text-decoration: underline;
}

.marquee-container a:hover {
  /* marquee tag*/
  color: yellow;
}

/* Carousel height */
#carouselExampleIndicators .carousel-item {
  height: 450px;
  width: 100%;
}

#carouselExampleIndicators .carousel-item img {

  width: 100%;
  height: 100%;
  object-fit: inherit;
}



/* Notification feed styling */
@keyframes scroll-up {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

.notification-container {
  height: 450px;
  overflow: hidden;
  background-color: #f8f9fa;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  border: 1px solid #ccc;
  position: relative;
}

.notification-list {
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scroll-up 30s linear infinite;
  /* slower, continuous loop */
  display: inline-block;
}

.notification-list li {
  padding: 10px;
  background-color: white;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.notification-list li p {
  margin-top: 10px;
  color: rgb(20, 80, 145);
}

.iframe-container {
  width: 100%;
  /* Adjust the max-width as needed */
  height: 800px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}





 
  .fixed-size-img {
    width: 200px;
    /* Example fixed width */
    height: 250px;
    /* Example fixed height */
    object-fit: cover;
    /* Ensures the image fills the area */
  }

  .card-row {
    height: 100%;
    align-items: center;
    /* Vertically centers content within the row */
    background-image: url('./images/bg3.jpg');
  }