/* Faculty Block Styles */

/* Loading indicator styles */
#faculty-loading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  margin: 50px auto;
  background-color: rgba(0, 89, 140, 0.9); /* UCLA blue with higher opacity */
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: white;
  font-weight: bold;
  font-size: 16px;
  width: fit-content;
}

#faculty-loading .loading-text {
  margin-right: 12px;
}

#faculty-loading .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  background-color: #ffffff; /* White dots */
  animation: faculty-dot-pulse 1.4s infinite ease-in-out;
}

#faculty-loading .dot:nth-child(1) {
  animation-delay: 0s;
}

#faculty-loading .dot:nth-child(2) {
  animation-delay: 0.2s;
}

#faculty-loading .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes faculty-dot-pulse {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Faculty CV link styling */
.Faculty-member--cv a {
  font-weight: bold;
}

/* Faculty Social Icons Styling */
.Faculty-member--social svg {
  width: 24px;
  height: 24px;
  transition: fill 0.3s ease;
}

/* Google Scholar hover effect */
.Faculty-member--social svg g {
  transition: fill 0.3s ease;
}


/* ORCiD hover effect */
.Faculty-member--social.faculty-orcid svg .cls-1 {
  transition: fill 0.3s ease;
}

.Faculty-member--social:hover svg,
.Faculty-member--social:hover svg g,
.Faculty-member--social.faculty-orcid:hover svg path.cls-1 {
  fill: #0079bf !important;
}
