body {
  background-image: -webkit-linear-gradient(top, #ffb200, #ff6975);
  background-image: -o-linear-gradient(top, #ffb200 0, #ff6969 100%);
  background-image: linear-gradient(180deg, #ffb200 0, #ff6969);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFF0060",endColorstr="#FFFF6975",GradientType=0);
}


.text-center {
  text-align: center; /* Maintain text centering for the entire section */
}

.profile {
  display: flex;
  align-items: center; /* Vertically center the content */
  justify-content: center;
  margin-top: 20px;

}

.info {
  display: flex;
  justify-content: center;
}



.info .mugshot {
  margin-right: 20px; /* Adjust spacing between mugshot and H1 */
}


.mugshot {
  width: 100px;
  height: 100px;
  margin-right: 20px; /* Add spacing between mugshot and text */
  position: relative;
  overflow: hidden;
}

.imgMugshot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover; /* Adjust to "contain" if you don't want cropping */
}



.imgthumbnailCard {
  padding: 4px;
  line-height: 1.58;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  height: 240px;
  width:90%;
  margin-bottom: 10px;
  object-fit:cover;
}

.source_imgthumbnailCard {
  padding: 4px;
  line-height: 1.58;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 99%;
  float:left;
  height: auto;
  margin-bottom: 10px;
}


.solosept_content {
  margin-bottom: 40px;
  border-radius: 10px;
}
.solosept_content:last-of-type {
  margin-bottom: 0;
}


a:hover {
  text-decoration: none;
}

.card-block img {
  display: block;
  width: 100%; /* Set a definite width for object-fit to work predictably */
  /* height: 80%; /* Set a definite height for object-fit to work predictably */
  object-fit: contain; /* Scales the image down to fit within the container, preserving aspect ratio (may result in empty space) */
  /* object-fit: cover; /* Fills the container, potentially cropping the image to maintain aspect ratio */
  /* object-fit: fill;  /* Stretches or squashes the image to fill the container, potentially distorting the aspect ratio */
  /* object-fit: none;  /* Displays the image at its original size within the container */
  /* object-fit: scale-down; /* Behaves like 'none' if the image is smaller than the container, otherwise like 'contain' */
}
.col-xs-12 {
  position: relative;
}
#tabContainer {
  display: flex;
  gap: 5px;
  margin-bottom: -1px;
  margin-top: 20px;
  width: 80%;
  justify-content: flex-start;
}

.tab {
  padding: 10px;
  border: 1px solid #ccc;
  border-bottom: none;
  background: #f0f0f0;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  z-index: 1;
  flex-grow: 0;
  min-width: auto;
}

.tab.active {
  background: #ddd;
  border-bottom: none;
}

.card {
  border: 1px solid #ccc;
  padding: 20px;
  margin-top: 0;
  border-radius: 0 10px 10px 10px;
  width: 100%;
  display: none;
  transition-property: opacity, transform;
  transition-duration: 0.3s;
}

.card:first-child {
  display: block;
}

::view-transition-old(body),
::view-transition-new(body){
animation-duration: 0.5s;
}
::view-transition-old(card),
::view-transition-new(card){
animation-duration: 0.5s;
}
