.bloc-tabs {
  display: flex;
  margin-top: 21px;
  width: 100%;
  height: 34px;
  align-items: center;
  border-bottom: 1px solid #D0D3D3;
  margin-bottom: 30px;
  border-bottom: 1px solid #D0D3D3;
}

.tabs {
  padding: 8px 20px;
  text-align: center;
  cursor: pointer;
  /* width: 157px; */
  height: 34px;
  /* font-family: 'Roboto'; */
  font-style: normal;
  font-weight: 500;
  /* font-size: 14px; */
  line-height: 16px;
  text-align: center;
  letter-spacing: 1.25px;
}

.active-tabs {
  background: white;
  border-bottom: 4px solid #ffc328 !important;
  /* border: 1px solid #bcbec0; */
  box-sizing: border-box;
  border-radius: 8px 8px 0px 0px;
}

.active-tabs::before {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  /* width: calc(100% + 2px); */
  height: 4px;
  background: #ffc328;
}

.content-tabs {
  flex-grow: 1;
  margin-top: 8px;
}

.active-content {
  display: block;
}

.emailImg {
  filter: invert(28%) sepia(44%) saturate(2798%) hue-rotate(175deg) brightness(90%) contrast(87%);
  cursor: pointer;
}

th,
td {
  border: none !important;
}

/* Student Information (Top Content) Styling */
.student-details-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}

.student-photo-container {
  flex: 0 0 180px;
}

.student-photo-large {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border: 1px solid #aaa;
  background: #f5f5f5;
}

.student-info-container {
  flex: 1;
}
.studentIcon {
  width: 30px;
  display: inline-block;
  align-self: center;
}

.studentIcon img {
  height: 15px;
  width: 15px;
}

.student-info-label {
  min-width: 155px;
}

.iconCopy {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.iconCopy:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-10px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10px); }
}