[data-md-color-scheme="default"] {
  --md-primary-fg-color:        #ffffff;
  --md-primary-bg-color:       #015945;
  --md-typeset-a-color: #015945;
}
[data-md-color-scheme="slate"] {
  --md-primary-fg-color:        #015945;
  --md-primary-fg-color--light: #ECB7B7;
  --md-primary-fg-color--dark:  #90030C;
  --md-typeset-a-color: #D48282;
}

.md-header {
  background-color: #fff;
  color: #015945;
  font-family: Arial, Helvetica, sans-serif;
}

.md-tabs {
  color: #015945;
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
.md-tabs__link {
  color: #015945;
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.cls-1{
  color: var(--md-primary-fg-color);
}

.md-header--shadow {
  box-shadow: 0 0 0rem rgba(255, 255, 255, 0);
}

.md-typeset h1 {
  font-weight: 400;
  color: #015945;
}

.md-typeset h2 {
  font-weight: 400;
  color: #015945;
}

.md-typeset h3 {
  font-weight: 400;
}

.md-header__topic:first-child {
  font-size: 1.6rem;
  font-weight: 500;

}

.md-header__inner {
  height: 5rem;
  line-height: 5rem;
  font-family: Arial, Helvetica, sans-serif;
}

.md-tabs__item--active {
  font-size: 0.8rem;
  font-weight: 800;
}
.md-tabs__item--active {
  font-size: 0.9rem;
  font-weight: 1000;
}

.md-search__form {
  background-color: rgb(255, 255, 255);
  height: 2rem;
  line-height: 1.5rem;
}

.md-search__form:hover {
  background-color: rgb(137, 136, 136);
  height: 2rem;
  line-height: 1.5rem;
}

.md-header__topic {
  font-size: 1.2rem;
  font-weight: 100;
}

/* Round image style */
.round-image {
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1/1;
  object-position: center;
}

/* Welcome container layout */
.welcome-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}

.welcome-text {
  flex: 1;
}

/* Image Slideshow */
.image-slideshow {
  position: relative;
  width: 45%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.image-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.image-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.image-slide:nth-child(1) {
  position: relative;
  opacity: 1;
  animation: slideshow 25s infinite;
}

.image-slide:nth-child(2) {
  animation: slideshow 25s infinite 5s;
}

.image-slide:nth-child(3) {
  animation: slideshow 25s infinite 10s;
}

.image-slide:nth-child(4) {
  animation: slideshow 25s infinite 15s;
}

.image-slide:nth-child(5) {
  animation: slideshow 25s infinite 20s;
}

@keyframes slideshow {
  0% { opacity: 0; }
  10%, 30% { opacity: 1; }
  40%, 100% { opacity: 0; }
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .welcome-container {
    flex-direction: column;
  }
  
  .image-slideshow {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }
}
