.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-right {
    text-align: right; /* Aligns inline content (like text) to the right */
    padding: 10px;
  }

.dropdown-menu {
  padding-bottom: 10px;  /* Increase bottom padding */
  pointer-events: auto;
}

  /* Ensure that the dropdown columns stack vertically */
.dropdown-menu .container {
    display: block;
  }

.dropdown-menu .row {
    display: block;
  }

.transparent-btn {
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }


.list-group {
    padding: 2px; /* Adjust this value as needed for thin padding */
  }

.resources-btn {
  border: 2px solid #222324;
  border-radius: 8px;
}

.list-group-item {
  background-color: #0b0f1a;  /* deep navy */
  color: #dce3f2;             /* pale starlight */
  border: 1px solid #1f2a40;  /* subtle edge */
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 2px 4px; /* Tiny vertical and horizontal padding */
}

.list-group-item:hover {
  background-color: #1a2238;  /* brighter on hover */
  color: #ffffff;
  cursor: pointer;
}

.list-group-item.active {
  background-color: #264b96;  /* deep space blue */
  color: #ffffff;
  border-color: #3459a4;
  font-weight: bold;
}

.profile-pic {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  overflow: hidden;
}

.profile-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.indexImage {
  width: 100%;                  /* responsive width */
  aspect-ratio: 3 / 2;          /* 600x400 = 3:2 ratio */
  object-fit: cover;            /* fill the box, crop if needed */
  border-radius: 20px;          /* smooth rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* optional soft shadow */
}


#carouselIndex {
  border-radius: 20px; /* adjust as needed */
  overflow: hidden;    /* ensures rounded corners clip inner content */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* optional soft shadow */
}

.navbar-brand {
  height: 40px;
  width: auto;
}

#editor:empty:before {
  content: attr(data-placeholder);
  color: #aaa;
  position: absolute;
  pointer-events: none;
}

#editor {
  position: relative;
  min-height: 100px;
  padding-left: 10px;
  padding-top: 10px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


#editor:empty {
  color: #aaa;
}

/* Alternate css for accessibility */

.accessibility-mode {
  background-color: #000 !important;
  color: #fff !important;
  font-size: 1.25rem; /* Increase font size globally */
}

.accessibility-mode h1,
.accessibility-mode .display-4 {
  color: #ffff00 !important; /* Yellow header */
}

.accessibility-mode p,
.accessibility-mode a,
.accessibility-mode .lead {
  color: #ffffff !important;
  font-size: 1.25em;
}

.accessibility-mode a {
  text-decoration: underline;
  color: #00ffff !important; /* Cyan links */
}

.accessibility-mode .btn {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
}

#textUpload {
  visibility: hidden;
  position: absolute; 
  left: -1000px;
}