/* staff.php style................................................................................. */
/* Team Card Styling */
.team-card {
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Specific Leader Highlight */
.leader-card {
  border-top: 5px solid #003366; /* Your university theme color */
}

.icon-box {
  background: #eef2f7;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto;
}

/* Member list styling */
.member-icon {
  background: #f8f9fa;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.2rem;
}

/* ................................................................................................... */
/* Container for each role row */
.objective-item {
  display: flex;
  align-items: flex-start; /* Keeps icons at the top of the line */
  padding-bottom: 0.5rem;
}

/* Fixes icon width so text always starts at the same vertical line */
.icon-column {
  min-width: 45px; /* Adjust this to control the gap */
  display: flex;
  justify-content: center;
  padding-top: 3px; /* Fine-tunes icon alignment with the first line of text */
}

/* Role text alignment */
.role-content {
  flex: 1; /* Takes up the remaining horizontal space */
}

.role-content p {
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify; /* Optional: makes the right edge look cleaner */
}

/* Optional: Add a subtle separator between items if needed */
.objective-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1.25rem;
}

/* Define your custom color here if not already in your stylesheet */
.mainTextcolor {
  color: #007bff;
}
