#Subheader {
    position: relative;
}

.icon-logout:before {
    content: "\e800"; /* Replace with the correct Unicode for the logout icon from the mfn-icon set */
    font-family: "mfn-icons";
    font-size: 24px;
}

.float-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Add your existing styles here */

/* Add this for the responsive image */
.article-viewer img {
    width: 100%;  /* Scale the width to the parent container */
    height: auto;  /* Auto scale the height */
}

/* Other styles to make your article viewer consistent with the example */
.article-viewer .date,
.article-viewer .body,
.article-viewer .external-link {
    margin: 20px 0;
    padding: 0 20px;
}


.post-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
}

.date_label {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.image_frame {
    margin-bottom: 15px;
}

.post-title h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.post-excerpt {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.post-footer {
    display: flex;
    justify-content: flex-end;
}

.post-more {
    text-decoration: none;
    font-size: 16px;
}

.post-more i {
    margin-right: 5px;
}

.end-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.external-link {
    margin-right: 15px; /* Adjust as needed */
    color: #c40e0e; /* Adjust as needed */
    text-decoration: none;
}

.external-link:hover {
    text-decoration: underline;
}

.post-photo-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .post-desc-wrapper, .post-photo-wrapper {
        width: 100%;
        padding: 10px;
    }
    .post-title h2 {
        font-size: 1.5em;
    }
    .post-excerpt span {
        font-size: 1em;
    }
    .post-more {
        float: none;
    }
}



.carousel {
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
}

.carousel-inner {
    position: relative;
    overflow: visible;
}

.carousel-item {
    position: relative;
    display: none;
    width: 100%;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: inherit;
  z-index: -1;
  filter: blur(10px);
  transform: scale(1.1);
  transition: opacity 1s ease-in-out;
}

.carousel-background {
    background-image: url('../images/dolan_header_wallpaper.jpg');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;  
}

.carousel-container img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: left top;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.d-block {
  display: block !important;
}