<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base styles for the navbar */
.navbar {
  background-color: var(--bg-color);
  background: var(--bg-gradient);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  margin: 0;
}

/* Logo styles */
#nav_school_logo {
  max-height: 60px;
  height: auto;
  width: auto;
  transition: all 0.3s ease;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-left: 0;
}

/* Navbar brand */
.navbar-brand {
  font-weight: bold;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
}

.navbar-brand .fas {
  font-size: 1.5rem;
  margin-left: 0.1rem;
  color: var(--primary-color);
}

/* Navbar toggler */
.navbar-toggler {
  border-color: var(--primary-color);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(52, 152, 219, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar links */
.navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary-color);
  cursor: pointer;
}

.navbar-nav .nav-link.active {
  color: var(--accent-color);
}

.navbar-nav .nav-link .fas {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* Buttons */
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
}

.btn .fas {
  margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  #nav_school_logo {
    max-height: 50px;
  }
  .navbar-nav {
    margin-top: 1rem;
  }
  .d-flex {
    margin-top: 1rem;
  }
}
@media (max-width: 767.98px) {
  #nav_school_logo {
    max-height: 50px;
  }
  .navbar {
    padding: 0.3rem 0.5rem;
  }
  .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
}
/* Elegant hover effect for nav items */
.navbar-nav .nav-item:not(.user_nav) {
  position: relative;
}

.navbar-nav .nav-item:not(.user_nav)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.navbar-nav .nav-item:not(.user_nav):hover::after {
  width: 100%;
  left: 0;
}

/* FontAwesome icon enhancements */
.navbar-nav .nav-link .fas,
.btn .fas {
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover .fas,
.btn:hover .fas {
  transform: scale(1.1);
}

/* Improved button styling */
.btn {
  border-radius: 3px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-primary:hover {
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 0 10px rgba(41, 128, 185, 0.5);
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1 0 auto;
}

.custom-footer {
  flex-shrink: 0;
  padding: 20px 0;
  background-color: var(--bg-color);
  background: var(--bg-gradient);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: var(--secondary-color);
  display: none;
}
@media (min-width: 992px) {
  .custom-footer {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .custom-footer .container {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .custom-footer .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.custom-footer [class^=col-] {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .custom-footer [class^=col-] {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .custom-footer [class^=col-] {
    width: 100%;
    max-width: 300px;
  }
}
.custom-footer h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.custom-footer h6 i {
  margin-right: 0.5rem;
}
.custom-footer p {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .content {
    margin-bottom: 0;
  }
}
.activity-card {
  width: 15rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .activity-card {
    margin-bottom: 1rem;
  }
}
.activity-card .card {
  border-radius: 0.5rem;
  overflow: hidden;
  border: none;
}
.activity-card .card .card-img-top {
  -o-object-fit: cover;
     object-fit: cover;
  height: 5rem;
  max-width: 5rem;
  margin: auto;
}
.activity-card .card .card-body {
  background-color: #ffffff;
  padding: 1rem;
}
.activity-card .card .card-body .card-text {
  font-size: 1rem;
  color: #666666;
  text-align: center;
}

.activity-card .card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.activity-card .card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}
.activity-card .card .card-img-top {
  transition: transform 0.4s ease-in-out;
}
.activity-card .card .card-img-top:hover {
  transform: scale(1.05);
}
.activity-card .card .card-body {
  background-color: #fff;
  transition: background-color 0.3s ease-in-out;
}
.activity-card .card .card-body .card-text {
  transition: color 0.3s ease-in-out;
}
.activity-card .card .card-body .card-text:hover {
  color: #007BFF;
}
.activity-card .card .card-body:hover {
  background-color: #f5f5f5;
}

.activity_card_search .search-container {
  height: 60px;
}
.activity_card_search .search-box {
  position: relative;
}
.activity_card_search .search-input {
  padding: 10px;
  padding-left: 30px;
  border-radius: 20px;
  border: 1px solid #ccc;
  min-width: 30rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  color: rgb(1, 8, 9);
}
.activity_card_search .search-input:focus {
  outline: none;
  box-shadow: 0 0 5px rgb(81, 203, 238);
  border: 1px solid rgb(81, 203, 238);
  border-radius: 20px;
  border-color: rgb(81, 203, 238);
}
.activity_card_search .search-input::-moz-placeholder {
  color: rgb(81, 203, 238);
}
.activity_card_search .search-input::placeholder {
  color: rgb(81, 203, 238);
}
.activity_card_search .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #aaa;
}
@media (max-width: 768px) {
  .activity_card_search .search-input {
    min-width: 20rem;
  }
}
@media (max-width: 568px) {
  .activity_card_search .search-input {
    min-width: 10rem;
  }
}
@media (max-width: 368px) {
  .activity_card_search .search-input {
    min-width: 3rem;
  }
}
.activity_card_search .user_type_text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #343a40;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
@media (max-width: 768px) {
  .activity_card_search .user_type_text {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .activity_card_search .user_type_text {
    font-size: 1.5rem;
  }
}

.activity_card_search_drop_down .dropdown-toggle {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  color: #007bff;
  background-color: transparent;
  border: none;
}

.activity_card_search_drop_down .dropdown-toggle::after {
  font-size: 0.75rem;
  vertical-align: 0.1em;
}

.activity_card_search_drop_down .dropdown-toggle:hover,
.activity_card_search_drop_down .dropdown-toggle:focus {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  box-shadow: none;
}

.activity_card_search_drop_down .dropdown-menu {
  font-size: 1rem;
  min-width: 100%;
  max-width: 250px;
  width: -moz-max-content;
  width: max-content;
}

.activity_card_search_drop_down .dropdown-item {
  white-space: normal;
  word-wrap: break-word;
}

.reset_cards_icon .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 3rem; /* Adjust size as needed */
  height: 3rem; /* Adjust size as needed */
  background-color: var(--card_toggle_icon_background-color);
  border-radius: 50%; /* This creates a perfect circle */
  margin: 0;
}
.reset_cards_icon .nav-link #reset_cards_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--card_toggle_icon_icon-color);
  margin: 0;
  padding: 0;
  transition: transform 0.3s ease;
}
.reset_cards_icon .nav-link #reset_cards_icon:hover {
  transform: rotate(180deg);
  cursor: pointer;
}

.activity_card_toggle_always_on_top {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999;
}
.activity_card_toggle_always_on_top .user_nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.activity_card_toggle_always_on_top .nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #1a035f;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.activity_card_toggle_always_on_top .nav-link i {
  font-size: 20px;
  color: #333;
}

.custom-form {
  position: relative;
}

.ae_toggle_filter_form {
  position: absolute;
  top: 0.5rem;
  right: 0.1rem;
  background: var(--ae_toggle_filter_form_bg);
  -webkit-backdrop-filter: var(--ae_toggle_filter_form_blur);
          backdrop-filter: var(--ae_toggle_filter_form_blur);
  border-radius: var(--ae_toggle_filter_form_border-radius);
  box-shadow: var(--ae_toggle_filter_form_box-shadow);
  padding: var(--ae_toggle_filter_form_padding);
}
.ae_toggle_filter_form .btn {
  padding: var(--ae_toggle_filter_form_btn_padding);
  font-size: var(--ae_toggle_filter_form_btn_font-size);
}
.ae_toggle_filter_form .btn.btn-primary {
  background-color: var(--ae_toggle_filter_form_btn_primary_bg);
  border-color: var(--ae_toggle_filter_form_btn_primary_border);
}
.ae_toggle_filter_form .btn.btn-primary:hover {
  background-color: var(--ae_toggle_filter_form_btn_primary_hover_bg);
  border-color: var(--ae_toggle_filter_form_btn_primary_hover_border);
}
.ae_toggle_filter_form .btn.rounded-circle {
  width: var(--ae_toggle_filter_form_btn_circle_width);
  height: var(--ae_toggle_filter_form_btn_circle_height);
  display: flex;
  justify-content: center;
  align-items: center;
}
.ae_toggle_filter_form .btn .fa {
  font-size: var(--ae_toggle_filter_form_fa_font-size);
  color: var(--ae_toggle_filter_form_fa_color);
}

.ae_form_instructions .btn-primary {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2); /* Keeping your current background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 5px;
  color: black;
  padding: 2px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden; /* Added for the shine effect */
}

.ae_form_instructions .btn-primary:hover {
  text-decoration: none;
  color: black; /* Keeping text color consistent */
  opacity: 0.7;
}

.ae_form_instructions .btn-primary:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn1 3s ease-in-out infinite;
}

.ae_form_instructions .btn-primary:active {
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.3), -4px -4px 6px 0 rgba(116, 125, 136, 0.2), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2), inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
}

@keyframes shiny-btn1 {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* Smaller width on small screens */
@media (max-width: 768px) {
  .ae_form_instructions .btn-primary {
    width: 50%;
    max-width: 300px;
  }
}
.small-image-icon-wrapper {
  background-color: #e0e7e5;
  position: absolute;
  top: 1.6rem;
  left: 0.5px;
  padding: 0px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  margin: 0px;
}
.small-image-icon-wrapper .col {
  display: flex;
  gap: 0px;
  align-items: center;
  padding: 0;
  margin: 0;
}
.small-image-icon-wrapper .col img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0;
  padding: 0;
}
.small-image-icon-wrapper .col img:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

input[type]:hover, input[type]:focus,
input[type=file]:hover,
input[type=file]:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  outline: none !important;
  box-shadow: none !important;
}

.ae_new_table_filter {
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: auto;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
}
.ae_new_table_filter::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.ae_new_table_filter::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.ae_new_table_filter::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.ae_new_table_filter::-webkit-scrollbar-thumb:hover {
  background: #666;
}
.ae_new_table_filter .list-group-item {
  padding: 0.25rem;
  border: none;
  width: 100%;
}
.ae_new_table_filter .list-group-item .btn-link {
  padding: 0;
  font-size: 0.875rem;
}
.ae_new_table_filter .collapse .row {
  margin: 0;
  width: 100%;
}
.ae_new_table_filter .table {
  font-size: 0.875rem;
  margin-bottom: 0;
  width: 100%;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  white-space: nowrap;
}
.ae_new_table_filter .table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.ae_new_table_filter .table thead th {
  background: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  padding: 0.5rem 0.25rem;
  font-weight: 600;
  color: #495057;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.ae_new_table_filter .table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}
.ae_new_table_filter .table tbody tr:hover {
  background-color: rgba(0, 123, 255, 0.05);
  transition: background-color 0.2s ease;
}
.ae_new_table_filter .table tbody td {
  padding: 0.25rem;
  vertical-align: middle;
  border: 1px solid #dee2e6;
}
.ae_new_table_filter .table tr:last-child {
  font-weight: bold;
  background-color: #f8f9fa;
}
.ae_new_table_filter .table tr:last-child td {
  border-top: 2px solid #dee2e6;
}
.ae_new_table_filter .btn-sm {
  padding: 0.25rem 0.5rem;
  line-height: 1;
}
.ae_new_table_filter .btn-sm.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}
.ae_new_table_filter .btn-sm.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

#student_details_list_basic_one {
  max-width: 800px;
  margin: 2rem auto;
  animation: fadeIn 0.5s ease-out;
}
#student_details_list_basic_one .card {
  border: none;
  transition: transform 0.3s ease-in-out;
}
#student_details_list_basic_one .card:hover {
  transform: translateY(-5px);
}
#student_details_list_basic_one .card-body {
  padding: 2rem;
}
@media (max-width: 576px) {
  #student_details_list_basic_one .card-body {
    padding: 1.5rem;
  }
}
#student_details_list_basic_one .text-center img {
  width: 150px;
  height: 150px;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#student_details_list_basic_one .text-center img:hover {
  transform: scale(1.05);
}
@media (max-width: 576px) {
  #student_details_list_basic_one .text-center img {
    width: 120px;
    height: 120px;
  }
}
#student_details_list_basic_one .list-group {
  margin-top: 2rem;
}
#student_details_list_basic_one .list-group .list-group-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0.5rem;
  background: transparent;
  transition: background-color 0.3s ease;
}
#student_details_list_basic_one .list-group .list-group-item:hover {
  background-color: rgba(74, 144, 226, 0.05);
}
@media (max-width: 576px) {
  #student_details_list_basic_one .list-group .list-group-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #student_details_list_basic_one .list-group .list-group-item span:last-child {
    width: 100%;
    padding-left: 1.8rem;
    color: #7f8c8d;
    font-size: 0.95rem;
  }
}
#student_details_list_basic_one .list-group .list-group-item i {
  color: #4a90e2;
  width: 20px;
  transition: transform 0.3s ease;
}
#student_details_list_basic_one .list-group .list-group-item:hover i {
  transform: scale(1.2);
}
#student_details_list_basic_one .list-group .fw-bold {
  color: #2c3e50;
  font-size: 1rem;
}
@media (max-width: 576px) {
  #student_details_list_basic_one .list-group .fw-bold {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }
}
#student_details_list_basic_one .btn-primary {
  background-color: #4a90e2;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}
#student_details_list_basic_one .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
  background-color: #2275d7;
}
#student_details_list_basic_one .btn-primary i {
  transition: transform 0.3s ease;
}
#student_details_list_basic_one .btn-primary:hover i {
  transform: rotate(15deg);
}
@media (max-width: 576px) {
  #student_details_list_basic_one .btn-primary {
    width: 100%;
    padding: 0.6rem 1rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#student_details_list_basic_one::-webkit-scrollbar {
  width: 8px;
}
#student_details_list_basic_one::-webkit-scrollbar-track {
  background: #f8f9fa;
}
#student_details_list_basic_one::-webkit-scrollbar-thumb {
  background: rgba(74, 144, 226, 0.5);
  border-radius: 4px;
}
#student_details_list_basic_one::-webkit-scrollbar-thumb:hover {
  background: #4a90e2;
}

.spinner-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--loading_bar_background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.spinner-container .spinner {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner-container .spinner .circle {
  width: 180px;
  height: 180px;
  border: 20px solid var(--loading_bar_circle-border-color);
  border-top: 20px solid var(--loading_bar_circle-color);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}
.spinner-container .loading-text {
  margin-top: 2rem;
  font-size: 1.6rem;
  color: var(--loading_bar_text-color);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: pulse 1.5s infinite alternate;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(26, 26, 46, 0.3), rgba(22, 33, 62, 0.3), rgba(15, 52, 96, 0.3));
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  z-index: -1;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
:root {
  --toast-header-font: "Arial", sans-serif;
  --toast-icon-spacing: 1rem;
  --toast-primary-color: white;
  --toast-success-color: rgb(27, 4, 68);
  --toast-danger-color: red;
  --toast-success-bg: #32054b;
  --toast-danger-bg: #dc3545;
}

body {
  font-family: var(--toast-header-font);
}

.toast-header strong {
  margin-right: auto;
}
.toast-header button.btn-close {
  background-color: transparent;
  border: none;
}
#aeToastE .toast-header {
  background-color: var(--toast-danger-bg);
  color: var(--toast-primary-color);
  width: 100%;
}
#aeToastE .toast-header i.fa {
  color: var(--toast-primary-color);
  margin-right: var(--toast-icon-spacing);
}

#aeToastS .toast-header, #aeToastR .toast-header, #aeToastP .toast-header {
  background-color: var(--toast-success-bg);
  color: var(--toast-primary-color);
  width: 100%;
}
#aeToastS .toast-header i.bi, #aeToastR .toast-header i.bi, #aeToastP .toast-header i.bi {
  color: var(--toast-primary-color);
  margin-right: var(--toast-icon-spacing);
}

#aeToastY .toast-header {
  background-color: var(--toast-danger-bg);
  color: var(--toast-primary-color);
}
#aeToastY .toast-header i.fa {
  color: var(--toast-primary-color);
  margin: var(--toast-icon-spacing);
}
#aeToastR {
  background-color: var(--_toastR-bg-color);
  color: var(--_toastR-text-color);
}
#aeToastR .toast-header {
  background-color: var(--_toastR-bg-color);
  color: var(--_toastR-text-color);
}
#aeToastR .toast-header i {
  color: var(--_toastR-icon-color);
  font-size: var(--_toastR-icon-font-size);
  margin-right: var(--_toastR-icon-margin-right);
}
#aeToastR .toast-body {
  padding: 15px;
  background-color: var(--_toastR-bg-color);
  font-weight: bolder;
  color: var(--_toastR-text-color);
}
#aeToastR .toast-body .text-center {
  text-align: center;
}
#aeToastR .btn-primary {
  background-color: var(--_toastR-btn-primary-bg-color);
  border-color: var(--_toastR-btn-primary-border-color);
}

#aeToastP {
  background-color: var(--_toastR-bg-color);
  color: var(--_toastR-text-color);
  z-index: 9999;
}
#aeToastP .toast-header {
  background-color: var(--_toastR-bg-color);
  color: var(--_toastR-text-color);
}
#aeToastP .toast-header i {
  color: var(--_toastR-icon-color);
  font-size: var(--_toastR-icon-font-size);
  margin-right: var(--_toastR-icon-margin-right);
}
#aeToastP .toast-body {
  padding: 15px;
  background-color: var(--_toastR-bg-color);
  font-weight: bolder;
  color: var(--_toastR-text-color);
}
#aeToastP .toast-body .text-center {
  text-align: center;
}
#aeToastP .btn-primary {
  background-color: var(--_toastR-btn-primary-bg-color);
  border-color: var(--_toastR-btn-primary-border-color);
}

#aeToastF {
  background-color: var(--_toastF-bg-color);
  color: var(--_toastF-text-color);
}
#aeToastF .toast-header {
  background-color: var(--_toastF-bg-color);
  color: var(--_toastF-text-color);
}
#aeToastF .toast-header i {
  color: var(--_toastF-icon-color);
  font-size: var(--_toastF-icon-font-size);
  margin-right: var(--_toastF-icon-margin-right);
}
#aeToastF .toast-body {
  padding: 15px;
  background-color: var(--_toastF-bg-color);
  font-weight: bolder;
  color: var(--_toastF-text-color);
}
#aeToastF .toast-body .text-center {
  text-align: center;
}
#aeToastF .btn-primary {
  background-color: var(--_toastF-btn-primary-bg-color);
  border-color: var(--_toastF-btn-primary-border-color);
}

#aeToastF {
  background-color: rgba(var(--toastF-bg-color-rgb), 0.9); /* Increased opacity */
  color: var(--toastF-text-color);
}
#aeToastF .toast-header {
  background-color: rgba(var(--toastF-bg-color-rgb), 0.95); /* Slightly more opaque header */
  color: var(--toastF-text-color);
}
#aeToastF .toast-header i {
  color: var(--toastF-icon-color);
  font-size: var(--toastF-icon-font-size);
  margin-right: var(--toastF-icon-margin-right);
}
#aeToastF .toast-body {
  padding: 15px;
  background-color: rgba(var(--toastF-bg-color-rgb), 0.9); /* Increased opacity */
  font-weight: bolder;
  color: var(--toastF-text-color);
}
#aeToastF .toast-body .text-center {
  text-align: center;
}
#aeToastF .btn-primary {
  background-color: var(--toastF-btn-primary-bg-color);
  border-color: var(--toastF-btn-primary-border-color);
}

.form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  overflow-y: auto;
  padding: 1rem 0;
}
.form-overlay::after {
  content: "";
  display: block;
  height: 1rem;
  flex-shrink: 0;
}

.registration_form, .login-form {
  width: 90%;
  max-width: 25rem;
  z-index: 200 !important;
  background: var(--color-background);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 0 1rem 0;
  border: 3px solid var(--color-border);
  padding: 1rem;
  box-shadow: 0 4px 8px 0 var(--color-shadow), 0 6px 20px 0 var(--color-shadow-strong);
  border-radius: 0.5rem;
  /* Responsive Design */
}
.registration_form a, .login-form a {
  display: inline-block;
  margin-top: 8px;
  transition: color 0.3s, transform 0.3s;
}
.registration_form a:hover, .login-form a:hover {
  color: var(--color-link-hover);
  transform: translateY(-2px);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .registration_form, .login-form {
    width: 95%;
    margin: 0 0 0.5rem 0;
  }
}

.registration_form-alt, .login-form-alt {
  width: 90%;
  max-width: 25rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  z-index: 200 !important;
  background: var(--color-background);
  position: fixed;
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
  border: 3px solid var(--color-border);
  padding: 1rem;
  box-shadow: 0 4px 8px 0 var(--color-shadow), 0 6px 20px 0 var(--color-shadow-strong);
  border-radius: 0.5rem;
  /* Responsive Design */
  /* Custom scrollbar styling */
}
.registration_form-alt a, .login-form-alt a {
  display: inline-block;
  margin-top: 8px;
  transition: color 0.3s, transform 0.3s;
}
.registration_form-alt a:hover, .login-form-alt a:hover {
  color: var(--color-link-hover);
  transform: translateY(-2px);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .registration_form-alt, .login-form-alt {
    width: 95%;
  }
}
.registration_form-alt::-webkit-scrollbar, .login-form-alt::-webkit-scrollbar {
  width: 6px;
}
.registration_form-alt::-webkit-scrollbar-track, .login-form-alt::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.registration_form-alt::-webkit-scrollbar-thumb, .login-form-alt::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.registration_form-alt::-webkit-scrollbar-thumb:hover, .login-form-alt::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

#registration_form_mobile_error {
  color: rgb(168, 51, 51);
  font-size: 0.8rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.ae-close-form {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #eee;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -5.5px;
  right: -5px;
  z-index: 1;
}
.ae-close-form i {
  color: #666;
  font-size: 12px;
  transition: transform 0.3s ease;
}
.ae-close-form:hover {
  background: #f8f8f8;
  border-color: #ddd;
  transform: scale(1.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.ae-close-form:hover i {
  transform: rotate(90deg);
  color: #333;
}
.ae-close-form:active {
  transform: scale(0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.capture_container {
  /* Container styles */
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  /* Make all borders inside transparent */
  /* Style for the regenerate button */
  /* Ensure consistent height for all elements */
  /* Style for the CAPTCHA text container */
  /* Style for the input field */
}
.capture_container .input-group-text,
.capture_container .form-control,
.capture_container .btn-outline-secondary {
  border: 1px solid transparent;
}
.capture_container .btn-outline-secondary {
  background: transparent;
  font-weight: bold;
  border-radius: 50%;
}
.capture_container .btn-outline-secondary:hover {
  background-color: transparent;
  border-color: transparent;
  color: rgb(13, 12, 12);
}
.capture_container .btn-outline-secondary .fa-sync-alt {
  font-size: 1.2em;
  font-weight: 900;
}
.capture_container .input-group-text,
.capture_container .form-control,
.capture_container .btn {
  height: 100%;
}
.capture_container #captcha_text {
  min-height: 70px;
  background-color: #f8f9fa;
}
.capture_container #captcha_input {
  border-color: #ced4da;
}
.capture_container #captcha_input:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Container styling */
.append_hod_card {
  padding: 20px 0;
}

/* Card styling */
.list_card {
  border: none !important;
  border-radius: 15px !important;
  box-shadow: 0 8px 20px rgba(75, 0, 130, 0.15);
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  position: relative;
  overflow: hidden;
}

.list_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(75, 0, 130, 0.25);
}

/* Crown icon styling */
.list_card .fa-crown {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(75, 0, 130, 0.3));
  transition: all 0.3s ease;
}

.list_card:hover .fa-crown {
  transform: rotate(15deg) scale(1.1);
  color: #6a0dad;
}

/* Profile image styling */
.list_card .card-img-top {
  width: 120px !important;
  height: 120px !important;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(75, 0, 130, 0.2);
  transition: all 0.3s ease;
  margin: 20px auto !important;
}

.list_card:hover .card-img-top {
  border-color: rgba(75, 0, 130, 0.5);
  transform: scale(1.05);
}

/* Card content styling */
.list_card .card-body {
  padding: 1.5rem;
}

.list_card .card-title {
  color: #4B0082;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.list_card .card-text {
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.list_card .card-text span {
  color: #4B0082;
  font-weight: 500;
}

/* Summary card specific styling */
.summary-card {
  border: none !important;
  border-radius: 15px !important;
  box-shadow: 0 8px 20px rgba(75, 0, 130, 0.1);
  background: linear-gradient(135deg, #f8f9fa, #ffffff) !important;
  transition: all 0.3s ease;
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(75, 0, 130, 0.2);
}

.summary-card .card-title {
  color: #4B0082;
  font-weight: 600;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(75, 0, 130, 0.1);
}

.summary-card .card-text {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.summary-card .card-text span {
  color: #4B0082;
  font-size: 1.1rem;
}

/* No HODs card styling */
.col-12 .card {
  border: none !important;
  border-radius: 15px !important;
  box-shadow: 0 8px 20px rgba(75, 0, 130, 0.1);
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.col-12 .card .card-title {
  color: #4B0082;
  font-weight: 600;
  margin-bottom: 1rem;
}

.col-12 .card .card-text {
  color: #666;
  font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .list_card .card-img-top {
    width: 100px !important;
    height: 100px !important;
  }
  .list_card .card-title {
    font-size: 1.1rem;
  }
  .list_card .card-text {
    font-size: 0.9rem;
  }
}
.list_card_search .search-container {
  height: 60px;
}
.list_card_search .search-box {
  position: relative;
}
.list_card_search .search-input {
  padding: 10px;
  padding-left: 30px;
  border-radius: 20px;
  border: 1px solid #ccc;
  min-width: 30rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  color: rgb(1, 8, 9);
}
.list_card_search .search-input:focus {
  outline: none;
  box-shadow: 0 0 5px rgb(81, 203, 238);
  border: 1px solid rgb(81, 203, 238);
  border-radius: 20px;
  border-color: rgb(81, 203, 238);
}
.list_card_search .search-input::-moz-placeholder {
  color: rgb(81, 203, 238);
}
.list_card_search .search-input::placeholder {
  color: rgb(81, 203, 238);
}
.list_card_search .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #aaa;
}
@media (max-width: 768px) {
  .list_card_search .search-input {
    min-width: 20rem;
  }
}
@media (max-width: 568px) {
  .list_card_search .search-input {
    min-width: 10rem;
  }
}
@media (max-width: 368px) {
  .list_card_search .search-input {
    min-width: 3rem;
  }
}
.list_card_search .user_type_text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #343a40;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
@media (max-width: 768px) {
  .list_card_search .user_type_text {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .list_card_search .user_type_text {
    font-size: 1.5rem;
  }
}

.list_card_search_drop_down .dropdown-toggle {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  color: #007bff;
  background-color: transparent;
  border: none;
}
.list_card_search_drop_down .dropdown-toggle::after {
  font-size: 0.75rem;
  vertical-align: 0.1em;
}
.list_card_search_drop_down .dropdown-toggle:hover,
.list_card_search_drop_down .dropdown-toggle:focus {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  box-shadow: none;
}
.list_card_search_drop_down .dropdown-menu {
  font-size: 1rem;
  min-width: 100%;
  max-width: 250px;
  width: -moz-max-content;
  width: max-content;
}
.list_card_search_drop_down .dropdown-item {
  white-space: normal;
  word-wrap: break-word;
}

.ae_one_row_data_entry_form {
  padding: 1.5rem 0;
}
.ae_one_row_data_entry_form .custom-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.ae_one_row_data_entry_form .custom-form:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.ae_one_row_data_entry_form .custom-form h5 {
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.25rem;
}
.ae_one_row_data_entry_form .custom-form h5.text-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ae_one_row_data_entry_form .custom-form .form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 0.5rem;
}
.ae_one_row_data_entry_form .custom-form .form-control {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.ae_one_row_data_entry_form .custom-form .form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.ae_one_row_data_entry_form .custom-form .form-control::-moz-placeholder {
  color: #9ca3af;
}
.ae_one_row_data_entry_form .custom-form .form-control::placeholder {
  color: #9ca3af;
}
.ae_one_row_data_entry_form .custom-form textarea.form-control {
  min-height: 60px;
  resize: vertical;
}
.ae_one_row_data_entry_form .custom-form .row {
  margin-bottom: 0.5rem;
}
.ae_one_row_data_entry_form .custom-form .row:last-child {
  margin-bottom: 0;
}
.ae_one_row_data_entry_form .custom-form .mb-3 {
  margin-bottom: 1rem !important;
}
.ae_one_row_data_entry_form .custom-form .btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.ae_one_row_data_entry_form .custom-form .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.ae_one_row_data_entry_form .custom-form .btn-primary:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .ae_one_row_data_entry_form .custom-form {
    padding: 1.5rem;
  }
  .ae_one_row_data_entry_form .row {
    margin-bottom: 0;
  }
}

.ae_search_suggestions_menu {
  /* Base container styling */
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 9px 6px rgba(0, 0, 0, 0.1);
  position: relative; /* Contain absolute positioned list */
  /* Unified input area styling */
  /* Suggestions list styling */
  /* Responsive adjustments */
}
.ae_search_suggestions_menu .input-group {
  display: flex;
  background-color: #f5f7fa;
  border-radius: 6px;
  overflow: hidden;
}
.ae_search_suggestions_menu .input-group .input-group-text,
.ae_search_suggestions_menu .input-group .form-select,
.ae_search_suggestions_menu .input-group .form-control,
.ae_search_suggestions_menu .input-group .btn-primary {
  border: none;
  background: transparent;
  box-shadow: none;
}
.ae_search_suggestions_menu .input-group .input-group-text {
  padding: 0.5rem 0.75rem;
  background-color: #f5f7fa;
  font-weight: 500;
  color: #495057;
}
.ae_search_suggestions_menu .input-group .form-select,
.ae_search_suggestions_menu .input-group .form-control {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background-color: #f5f7fa;
  color: #495057;
}
.ae_search_suggestions_menu .input-group .form-select:focus,
.ae_search_suggestions_menu .input-group .form-control:focus {
  outline: none;
  background-color: #e9ecef;
}
.ae_search_suggestions_menu .input-group .btn-primary {
  padding: 0.5rem 1rem;
  background-color: #0d6efd;
  color: #ffffff;
  transition: background-color 0.2s ease-in-out;
}
.ae_search_suggestions_menu .input-group .btn-primary:hover {
  background-color: #0b5ed7;
}
.ae_search_suggestions_menu .input-group .btn-primary i {
  margin-right: 0.5rem;
}
.ae_search_suggestions_menu #searchSuggestions {
  position: absolute;
  top: calc(100% + 0.5rem); /* Slight spacing below the input group */
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  /* Scrollbar styling */
}
.ae_search_suggestions_menu #searchSuggestions .list-group-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.ae_search_suggestions_menu #searchSuggestions .list-group-item:hover {
  background-color: #f8f9fa;
}
.ae_search_suggestions_menu #searchSuggestions .list-group-item .fas.fa-user {
  color: #0d6efd;
  font-size: 1rem;
  margin-right: 0.75rem;
}
.ae_search_suggestions_menu #searchSuggestions .list-group-item .option-name {
  flex: 1;
  font-weight: 500;
  color: #495057;
}
.ae_search_suggestions_menu #searchSuggestions .list-group-item .fas.fa-chevron-right {
  color: #6c757d;
  font-size: 0.8rem;
  opacity: 0.5;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.ae_search_suggestions_menu #searchSuggestions .list-group-item:hover .fas.fa-chevron-right {
  opacity: 1;
  transform: translateX(3px);
}
.ae_search_suggestions_menu #searchSuggestions::-webkit-scrollbar {
  width: 8px;
}
.ae_search_suggestions_menu #searchSuggestions::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.ae_search_suggestions_menu #searchSuggestions::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.ae_search_suggestions_menu #searchSuggestions::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
@media (max-width: 768px) {
  .ae_search_suggestions_menu {
    padding: 0.5rem;
  }
  .ae_search_suggestions_menu .input-group-text,
  .ae_search_suggestions_menu .form-control,
  .ae_search_suggestions_menu .btn-primary {
    font-size: 0.875rem;
  }
  .ae_search_suggestions_menu #searchSuggestions .list-group-item {
    padding: 0.5rem 0.75rem;
  }
}

.ae-shadow {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease-in-out;
}
.ae-shadow:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08), 0 16px 32px rgba(0, 0, 0, 0.06);
}

.admission-login-form {
  width: 90%;
  max-width: 25rem;
  z-index: 100;
  background: var(--color-background);
  position: fixed;
  left: 50%;
  top: 6rem;
  transform: translateX(-50%);
  border: 6px solid var(--color-border);
  padding: 1rem;
  box-shadow: 0 4px 8px 0 var(--color-shadow), 0 6px 20px 0 var(--color-shadow-strong);
  border-radius: 0.5rem;
  /* Add height constraints */
  max-height: calc(100vh - 8rem); /* Leave space for top offset + bottom margin */
  overflow-y: auto; /* Enable internal scrolling */
}
.admission-login-form a {
  display: inline-block;
  margin-top: 8px;
  transition: color 0.3s, transform 0.3s;
}
.admission-login-form a:hover {
  color: var(--color-link-hover);
  transform: translateY(-2px);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .admission-login-form {
    top: 2rem;
    max-height: calc(100vh - 4rem); /* Adjust for smaller top margin */
    width: 95%;
    padding: 0.75rem;
  }
}

#fill_admission_form .input-group &gt; .input-group-text:not(.cursor-pointer) {
  display: none;
}
#fill_admission_form .ae-transparent-form {
  position: relative;
  z-index: 1;
}
#fill_admission_form .ae-transparent-form .card,
#fill_admission_form .ae-transparent-form .card-body,
#fill_admission_form .ae-transparent-form form,
#fill_admission_form .ae-transparent-form form .form-control,
#fill_admission_form .ae-transparent-form form .input-group-text,
#fill_admission_form .ae-transparent-form .card-header,
#fill_admission_form .ae-transparent-form .progress_wrapper {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
#fill_admission_form .ae-transparent-form .progress_wrapper {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}
#fill_admission_form .ae-transparent-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
#fill_admission_form .school_logo_wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  z-index: 1000;
  transition: all 0.3s ease;
}
#fill_admission_form .school_logo_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  max-width: 85%;
  max-height: 85%;
}
@media (max-width: 575.98px) {
  #fill_admission_form .school_logo_wrapper {
    width: 60px;
    height: 60px;
    margin-top: 5px;
  }
  #fill_admission_form .school_logo_wrapper img {
    max-width: 60%;
    max-height: 60%;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  #fill_admission_form .school_logo_wrapper {
    width: 100px;
    height: 100px;
    margin-top: 12px;
  }
}
@media (min-width: 992px) {
  #fill_admission_form .school_logo_wrapper {
    width: 120px;
    height: 120px;
    margin-top: 15px;
  }
}

#main_form_wrapper {
  position: relative;
  padding-top: 30px !important;
}
#main_form_wrapper .d-flex.justify-content-end {
  position: absolute;
  top: 5px;
  right: 5px;
  width: auto !important;
}
#main_form_wrapper .d-flex.justify-content-end .btn-danger {
  transition: all 0.2s ease;
  z-index: 1000;
}
#main_form_wrapper .d-flex.justify-content-end .btn-danger:hover {
  transform: scale(1.05);
}
@media (max-width: 576px) {
  #main_form_wrapper .d-flex.justify-content-end .btn-danger {
    font-size: 0.85rem !important;
    padding: 3px 8px !important;
    margin: 8px !important;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (max-width: 576px) {
  #main_form_wrapper {
    padding-top: 45px !important;
  }
  #main_form_wrapper .d-flex.justify-content-end {
    top: 1px;
    right: 8px;
  }
}

.house-name {
  font-weight: bold;
  color: #1cac78;
}

.append-col .col {
  padding: 1rem;
}
.append-col .col .card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.append-col .col .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.append-col .col .card .card-header {
  background-color: #f8f9fa;
  color: #495057;
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid #e9ecef;
}
.append-col .col .card .card-header .house-name {
  display: inline-block;
}
.append-col .col .card .card-header .ae-delete-icon,
.append-col .col .card .card-header .ae-save-icon {
  color: #dc3545;
  margin-left: 1rem;
  cursor: pointer;
}
.append-col .col .card .card-header .ae-save-icon {
  color: #28a745;
}
.append-col .col .card .card-header .ae-save-icon .ae-save-text {
  font-size: 0.75rem;
  vertical-align: middle;
  margin-left: 0.25rem;
}
.append-col .col .card .card-body .list-group .list-group-item:not(:last-child) {
  border-bottom: 1px solid #e9ecef;
}
.append-col .col .card .card-body .list-group .list-group-item input[type=number] {
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  color: #495057;
  width: 100px;
  text-align: center;
}

#view-prospectus {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
#view-prospectus .card {
  width: 100%;
  max-width: 300px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
}
#view-prospectus .card-body {
  padding: 20px;
  position: relative;
}
#view-prospectus .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}
#view-prospectus .card-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}
#view-prospectus .delete-prospectus {
  background-color: red;
  border-color: #6c757d;
  position: absolute;
  top: -5 px;
  right: -1px;
}
#view-prospectus .btn:hover {
  background-color: #5a6268;
  border-color: #545b62;
}
#view-prospectus .delete-prospectus:hover {
  background-color: rgb(140, 10, 10);
}

.ae_toggle_filter_form1, .ae_toggle_filter_form {
  position: absolute;
  top: -0.1rem;
  right: -0.1rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.25rem;
}

.ae_toggle_filter_form1 .btn, .ae_toggle_filter_form .btn {
  padding: 0.25rem;
  font-size: 0.75rem;
}

.ae_toggle_filter_form1 .btn.rounded-circle, .ae_toggle_filter_form .btn.rounded-circle {
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ae_toggle_filter_form1 .btn .fa, .ae_toggle_filter_form .btn .fa {
  font-size: 0.875rem;
  color: #fff;
}

.table-container .table, .container .table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f8f9fa;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.table-container .table th, .container .table th, .table-container .table td, .container .table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table-container .table th, .container .table th {
  background-color: #e9ecef;
  color: #495057;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.table-container .table th.d-none, .container .table th.d-none {
  display: none;
}
.table-container .table td.actions, .container .table td.actions {
  width: 1%;
  white-space: nowrap;
}
.table-container .table td.actions .btn, .container .table td.actions .btn {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
}
.table-container .table td.actions .btn i, .container .table td.actions .btn i {
  margin-right: 0;
}
.table-container .table tr:hover, .container .table tr:hover {
  background-color: #f5f5f5;
}

#wrapper30 .fas {
  color: #f2f2f2;
}

.ann {
  /* Enhanced styles for announcement cards */
}
.ann .card {
  transition: all 0.3s ease;
  border-radius: 15px;
  border: none;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
}
.ann .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.ann .card-body {
  padding: 1.5rem;
}
.ann .card-title {
  color: #3a3a3a;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.ann textarea.form-control {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  resize: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.ann textarea.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  border-color: #80bdff;
}
.ann .btn-primary {
  background-color: #4e54c8;
  border-color: #4e54c8;
}
.ann .btn-primary:hover {
  background-color: #3f45b2;
  border-color: #3f45b2;
}
.ann .btn-danger {
  background-color: #ff6b6b;
  border-color: #ff6b6b;
}
.ann .btn-danger:hover {
  background-color: #ff5252;
  border-color: #ff5252;
}
.ann .btn i {
  margin-right: 5px;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.custom-announcement-bar {
  background: var(--announcement-gradient);
  color: #ffffff;
  padding: 10px 0;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin: 0;
  padding: 0;
}

.announcement-content {
  margin: 0;
  padding: 0;
  display: inline-block;
  padding-right: 100%;
  animation: scroll linear infinite;
}

@media (max-width: 768px) {
  .custom-announcement-bar {
    margin: 0;
    padding: 0;
    font-size: 1rem;
  }
}
/* Admission Button Fixed Positioning */
#admission_button2 {
  /* Fixed positioning at bottom right */
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
  /* Button sizing */
  padding: 0.5rem 1.5rem;
  min-width: -moz-max-content;
  min-width: max-content;
  font-size: 0.9rem;
  font-weight: 600;
  /* Custom gradient background */
  background: linear-gradient(45deg, #043927, #008080);
  background-size: 200% 200%;
  border: none;
  /* Enhanced shadow */
  box-shadow: 0 4px 15px rgba(49, 120, 115, 0.3);
  /* Base animations */
  animation: gradientShift 3s ease infinite;
  /* Smooth transitions */
  transition: all 0.3s ease;
  /* Ensure button stays above other content */
  z-index: 99999 !important;
}

/* Hover effects */
#admission_button2:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(49, 120, 115, 0.4);
}

/* Active state */
#admission_button2:active {
  transform: scale(0.95);
}

/* Icon styling */
#admission_button2 .fas.fa-graduation-cap {
  font-size: 1.1em;
  vertical-align: middle;
  margin-right: 5px;
}

/* Gradient animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Mobile optimizations */
@media (max-width: 768px) {
  #admission_button2 {
    bottom: 15px !important;
    right: 15px !important;
  }
}
/* Small mobile adjustments */
@media (max-width: 320px) {
  #admission_button2 {
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    bottom: 10px !important;
    right: 10px !important;
  }
}
.card .slide_index_update {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  margin-bottom: 10px;
  border-radius: 0.2rem;
  border: 1px solid #ced4da;
  width: auto;
  display: block;
  margin-right: auto;
  margin-left: auto;
  max-width: 200px;
}
.card .card-img-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
}
.card .card-img-top img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .delete-icon {
  position: absolute;
  top: -2rem;
  right: 0.25rem;
  color: red;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  padding: 0.2rem;
  z-index: 10;
}
.card .hidden-id {
  display: none;
}

.carousel-card-wrapper {
  background-color: #f0f0f0;
}

.small-img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel .carousel-control-prev, .carousel .carousel-control-next {
  width: auto;
  height: auto;
  padding: 10px;
}
.carousel .carousel-control-prev-icon, .carousel .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-color: black;
  border-radius: 50%;
  margin: 5rem;
}

.carousel-item {
  margin-top: 0;
}
.carousel-item img {
  height: 32rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.dynamic-carousel-wrapper .carousel-caption {
  background: rgb(59, 61, 61);
  background: linear-gradient(90deg, rgba(59, 61, 61, 0.6558998599) 32%, rgb(36, 0, 0) 44%, rgb(28, 165, 69) 62%, rgba(0, 212, 255, 0.3673844538) 75%);
  padding: 10px;
  transition: background-color 0.5s ease-in-out;
  border-radius: 0;
}
.dynamic-carousel-wrapper .carousel-caption .dynamic-carousel-title {
  color: #FFFFFF;
  font-size: 2.25rem;
  font-weight: bolder;
}
.dynamic-carousel-wrapper .carousel-caption .dynamic-carousel-description {
  color: #E0E0E0;
  font-size: 1rem;
}
.dynamic-carousel-wrapper .carousel-indicators button {
  background-color: #FFFFFF;
}
.dynamic-carousel-wrapper .carousel-indicators button.active {
  background-color: #007bff;
}
.dynamic-carousel-wrapper .carousel-control-prev-icon,
.dynamic-carousel-wrapper .carousel-control-next-icon {
  filter: invert(100%);
}

body, html {
  overflow-x: hidden;
}

.carousel {
  overflow: hidden;
}

html, body {
  background-color: #f2f2f2;
}

.ae-title {
  text-align: center;
  font-size: 2rem;
  color: #18453B;
  margin-bottom: 30px;
  padding: 10px;
}

#stud_carouselExampleCaptions {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#stud_carouselExampleCaptions .carousel-inner .carousel-item img {
  width: 100%;
  height: auto;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
#stud_carouselExampleCaptions .carousel-inner .carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0;
  padding: 10px 20px;
  bottom: 0;
  left: 0;
  right: 0;
  color: #333;
  text-align: center;
}
#stud_carouselExampleCaptions .carousel-inner .carousel-caption h5 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
#stud_carouselExampleCaptions .carousel-inner .carousel-caption p {
  font-size: 1rem;
}
#stud_carouselExampleCaptions .carousel-control-prev,
#stud_carouselExampleCaptions .carousel-control-next {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
#stud_carouselExampleCaptions .carousel-control-prev:hover, #stud_carouselExampleCaptions .carousel-control-prev:focus,
#stud_carouselExampleCaptions .carousel-control-next:hover,
#stud_carouselExampleCaptions .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
#stud_carouselExampleCaptions .carousel-control-prev-icon,
#stud_carouselExampleCaptions .carousel-control-next-icon {
  background-color: black;
  border-radius: 50%;
  padding: 10px;
  width: auto;
  height: auto;
}

#vision {
  background-color: var(--vision-background);
}
#vision .cardTitle {
  text-align: center;
  font-size: 2rem;
  color: var(--vision-primary);
  margin: 1rem;
  background-color: var(--vision-white);
}
#vision .card {
  border: 1px solid var(--vision-primary);
  border-radius: 0.625rem;
  background-color: var(--vision-white);
  margin: 1rem;
  padding: 1rem;
  box-shadow: 0.313rem 0.313rem 0.313rem var(--vision-primary);
  transition: all 0.3s ease-in-out;
}
#vision .card:hover {
  transform: scale(1);
  box-shadow: 0.625rem 0.625rem 0.625rem var(--vision-primary);
}
#vision .card .card-body {
  text-align: center;
  background-color: var(--vision-secondary);
}
#vision .card .card-body .card-title,
#vision .card .card-body .card-text {
  color: var(--vision-white);
  background-color: var(--vision-secondary);
}

#authorityCards {
  background-color: var(--auth-bg);
}
#authorityCards .title {
  text-align: center;
  font-size: 2rem;
  color: var(--auth-primary);
  margin-bottom: 30px;
  background-color: var(--auth-white);
  padding: 10px;
}
#authorityCards .cardTitle {
  text-align: center;
  font-size: 1.5rem;
  color: var(--auth-primary);
  margin: 10px;
  background-color: var(--auth-white);
}
#authorityCards .card {
  border: 1px solid var(--auth-primary);
  border-radius: 10px;
  background-color: var(--auth-white);
  margin: 10px;
  padding: 10px;
  box-shadow: 5px 5px 5px var(--auth-primary);
  transition: all 0.3s ease-in-out;
}
#authorityCards .card:hover {
  transform: scale(1.02);
  box-shadow: 10px 10px 10px var(--auth-primary);
}
#authorityCards .card .card-img-top {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  display: block;
  border-radius: 50%;
}
#authorityCards .card .card-body {
  text-align: center;
  background-color: var(--auth-secondary);
}
#authorityCards .card .card-body .card-title,
#authorityCards .card .card-body .card-text {
  color: var(--auth-white);
  background-color: var(--auth-secondary);
}
#authorityCards .card .card-body .card-subtitle {
  color: var(--auth-white);
  background-color: var(--auth-secondary);
}

#ae-title {
  text-align: center;
  font-size: 2rem;
  color: #18453B;
  margin-bottom: 30px;
  font-weight: bolder;
}

.currentEventsTitle {
  background: rgb(0, 0, 0);
  background: var(--banner2-gradient1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: #ffffff;
}
.currentEventsTitle h5 {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto;
  background: rgb(0, 0, 0);
  background: var(--banner2-gradient2);
  -webkit-text-fill-color: transparent;
  animation: swingText 5s ease-in-out infinite alternate, backgroundShift 10s linear infinite;
  color: #ffffff;
}
@keyframes swingText {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(30%);
  }
}
@keyframes backgroundShift {
  0%, 100% {
    background-position: 70% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.featured_events_card_wrapper .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgb(182, 230, 208);
  background: var(--banner2-gradient1);
}
.featured_events_card_wrapper .card .card-img-top {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured_events_card_wrapper .card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: between;
}
.featured_events_card_wrapper .card-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #f6e9e9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.featured_events_card_wrapper .card-text {
  font-size: 1em;
  color: #f6e9e9;
  text-align: justify;
}

/* teachers.scss - External SCSS file */
.teachers_card_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.teachers_card_wrapper .teacher_card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}
.teachers_card_wrapper .teacher_card .teacher_name {
  font-weight: bold;
  color: #333;
}
.teachers_card_wrapper .teacher_card:hover {
  transform: translateY(-5px);
}
.teachers_card_wrapper .teacher_card .teacher_image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.teachers_card_wrapper .teacher_card h2 {
  margin: 10px 0;
  font-size: 20px;
  color: #333;
}
.teachers_card_wrapper .teacher_card .teacher_info p {
  color: #666;
  font-size: 16px;
  margin: 5px 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.our-teachers-title, .page-title {
  padding: 20px 0;
  text-align: center;
}
.our-teachers-title .title, .page-title .title {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .our-teachers-title .our-teachers-title .title, .page-title .our-teachers-title .title {
    font-size: 2rem;
  }
}

/* Modal Custom Styles */
.modal-content.search-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 192, 203, 0.4);
  box-shadow: 0 8px 32px rgba(255, 192, 203, 0.2);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.modal-header.search-header {
  background: rgba(255, 240, 245, 0.7);
  padding: 20px;
  border-bottom: 1px solid rgba(255, 192, 203, 0.3);
}

.modal-header.search-header h5 {
  color: #8b4513;
  margin: 0;
  font-size: 1.5rem;
  text-shadow: 0 1px 2px rgba(139, 69, 19, 0.1);
}

.modal-body.search-body {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.5);
}

.cute-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 240, 245, 0.7);
  border-radius: 15px;
  padding: 5px;
  border: 1px solid rgba(255, 192, 203, 0.4);
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 192, 203, 0.1);
  transition: all 0.3s ease;
}

.cute-input-group:focus-within {
  box-shadow: 0 4px 20px rgba(255, 192, 203, 0.2);
  border-color: rgba(255, 192, 203, 0.6);
}

.input-icon {
  padding: 10px;
  color: rgba(139, 69, 19, 0.7);
}

.search-input {
  flex: 1;
  min-width: 200px;
  border: none;
  padding: 12px;
  background: transparent;
  color: #8b4513;
  font-size: 16px;
}

.search-input:focus {
  outline: none;
}

.search-input::-moz-placeholder {
  color: rgba(211, 164, 164, 0.7);
}

.search-input::placeholder {
  color: rgba(211, 164, 164, 0.7);
}

.search-button {
  background: rgba(255, 192, 203, 0.8);
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  color: #8b4513;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 192, 203, 0.2);
}

.search-button:hover {
  background: rgba(255, 182, 193, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 192, 203, 0.3);
}

.cute-list {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid rgba(255, 192, 203, 0.3);
  border-radius: 15px;
  padding: 0;
  list-style-type: none;
  background: rgba(255, 240, 245, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(255, 192, 203, 0.1);
}

.cute-list-item {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 228, 225, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.4);
}

.cute-list-item:last-child {
  border-bottom: none;
}

.cute-list-item:hover {
  background-color: rgba(255, 192, 203, 0.25);
  transform: translateX(4px);
}

.cute-list-item.active {
  background-color: rgba(255, 192, 203, 0.3);
  border-left: 4px solid rgba(255, 192, 203, 0.8);
}

.student-info h6 {
  color: #8b4513;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.student-info small {
  color: rgba(211, 164, 164, 0.9);
  font-style: italic;
}

.cute-badge {
  background: rgba(255, 192, 203, 0.7);
  padding: 5px 15px;
  border-radius: 20px;
  color: #8b4513;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(255, 192, 203, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Scrollbar Styling */
.cute-list::-webkit-scrollbar {
  width: 8px;
}

.cute-list::-webkit-scrollbar-track {
  background: rgba(255, 240, 245, 0.3);
  border-radius: 10px;
}

.cute-list::-webkit-scrollbar-thumb {
  background: rgba(255, 192, 203, 0.6);
  border-radius: 10px;
}

.cute-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 182, 193, 0.8);
}

/* Animation for modal opening */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, opacity 0.2s ease;
  transform: scale(0.95);
  opacity: 0;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

@media screen and (max-width: 480px) {
  .cute-input-group {
    flex-direction: column;
    padding: 10px;
  }
  .search-input {
    width: 100%;
    min-width: 100%;
  }
  .search-button {
    width: 100%;
    margin-top: 5px;
  }
  .input-icon {
    width: 100%;
    text-align: center;
    padding: 5px;
  }
}
.search-student-wrapper {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  padding: 1rem 1rem;
}
.search-student-wrapper .search-container {
  position: relative;
  width: 100%;
}
.search-student-wrapper .search-suggestions {
  max-height: 300px;
  overflow-y: auto;
}
.search-student-wrapper .search-input-group {
  display: flex;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.search-student-wrapper .search-input-group:focus-within {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.search-student-wrapper .search-input {
  flex: 1;
  border: none;
  padding: 16px 22px;
  font-size: 16px;
  background: #ffffff;
  color: #333;
  outline: none;
  width: 100%;
  border-radius: 8px;
}
.search-student-wrapper .search-input::-moz-placeholder {
  color: #9aa0a6;
  opacity: 0.8;
}
.search-student-wrapper .search-input::placeholder {
  color: #9aa0a6;
  opacity: 0.8;
}
.search-student-wrapper .search-indicator {
  padding: 12px 22px;
  color: #70757a;
  font-size: 14px;
  border-bottom: 1px solid #f1f3f4;
}
.search-student-wrapper .search-indicator i {
  margin-right: 8px;
}
.search-student-wrapper .search-suggestions {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
}
.search-student-wrapper .search-suggestions.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search-student-wrapper .suggestion-list {
  display: flex;
  flex-direction: column;
}
.search-student-wrapper .suggestion-item {
  padding: 12px 22px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background 0.2s ease;
}
.search-student-wrapper .suggestion-item:hover {
  background: #f5f5f5;
}
.search-student-wrapper .suggestion-item.footer {
  background: #f8f9fa;
  color: #70757a;
}
.search-student-wrapper .suggestion-item.student-item {
  padding: 14px 22px;
}
.search-student-wrapper .student-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.search-student-wrapper .student-name {
  font-weight: 500;
  font-size: 15px;
  color: #202124;
  margin-bottom: 4px;
}
.search-student-wrapper .student-admission {
  font-size: 13px;
  color: #5f6368;
  font-weight: 400;
}
.search-student-wrapper .suggestion-icon {
  margin-right: 12px;
  color: #70757a;
}
.search-student-wrapper .suggestion-icon.primary {
  color: #4285f4;
}
.search-student-wrapper .suggestion-icon.warning {
  color: #fbbc05;
}
.search-student-wrapper .suggestion-icon.info {
  color: #34a853;
}
.search-student-wrapper .suggestion-icon.secondary {
  color: #70757a;
}

#failed_list_card_wrapper2 {
  max-height: 60vh;
  margin: 1rem;
  overflow: auto;
}

@media (max-width: 768px) {
  #failed_messages_wrapper {
    max-height: 100vh;
    margin: 0.5rem 0;
  }
}/*# sourceMappingURL=index.css.map */</pre></body></html>