    /* Custom right-click menu for notice_and_announcements right button click functionality */
    .context-menu {
      display: none;
      position: absolute;
      z-index: 9999;
      background: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      border-radius: 0.5rem;
      min-width: 220px;
      overflow: hidden;
      animation: fadeIn 0.15s ease-in-out;
    }

    .context-menu a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1rem;
      color: #212529;
      text-decoration: none;
      font-weight: 500;
    }

    .context-menu a:hover {
      background-color: #f1f1f1;
      color: #0d6efd;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.98); }
      to { opacity: 1; transform: scale(1); }
    }

/* Carousel on introductory-carousel-list.html */


 /* Carousel Modal Style elements  */

    .modal-content {
      border-radius: 1rem;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(5px);
      animation: fadeInUp 0.6s ease-in-out;
    }

    .carousel-item .card {
      transition: transform 0.4s ease;
    }

    .carousel-item .card:hover {
      transform: scale(1.03);
    }

    .flashing-label {
      animation: flash 1.2s infinite alternate;
      font-weight: bold;
      font-size: 0.9rem;
    }

    @keyframes flash {
      from { opacity: 0.5; color: #0d6efd; }
      to { opacity: 1; color: #dc3545; }
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #212529;
      border-radius: 50%;
      padding: 1.2rem;
    }

    @media (max-width: 768px) {
      .carousel-item .card {
        margin: 0 auto;
      }
    }

.custom-img {
    width: 100vw;
    height: 60vh; /* You can adjust this to fit your design */
    object-fit: cover; /* Ensures image fills area without stretching */
  }
  .item img {
    height: 60vh;
    width: 100%;
    object-fit: cover;
    object-position: center-center;
    border-radius: 10px;
  }


//Announcement-Settings-Menu

#settingsTabs .list-group-item {
    cursor: pointer;
    transition: background-color 0.2s ease;
}
#settingsTabs .list-group-item:hover {
    background-color: #f8f9fa;
}
.settings-panel {
    display: none;
}
.settings-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
 .owl-nav button {
      background-color: #212529;
      border-radius: 50%;
      padding: 1.2rem;
  }


  .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .dropdown-item:hover {
    background-color: #343a40 !important; /* Bootstrap dark color */
    color: white !important;
  }