body {
  background: #fafafa;
  color: #333333;
  margin-top: 5rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #444444;
}

.bg-steel {
  background-color: #5f788a;
}

.bg-blue {
  background-color: #003865;
}

.site-header .navbar-nav .nav-link {
  color: #cbd5db;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.card:hover {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.card-body {
      white-space: normal;        /* Ensure text breaks to new lines */
      word-wrap: break-word;      /* Wrap long words to avoid overflow */
      overflow-wrap: break-word;  /* Alternative for modern browsers */
}

.media-body {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
}


.content-section {
  background: #ffffff;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
}

.article-title {
  color: #444444;
}

a.article-title:hover {
  color: #428bca;
  text-decoration: none;
}

.article-content {
  white-space: pre-line;
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  padding-bottom: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e3e3e3
}

.article-metadata a:hover {
  color: #333;
  text-decoration: none;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.menu-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}

.modal-dialog {
  height: 500px;
}

.div-bottom {
  margin-bottom: 20px;
}

.gallery {
    margin: 10px 50px;
}

.gallery img {
    transition: 1s;
    padding: 15px;
    width: 200px;
}

.gallery img:hover {
    filter: grayscale(100%)
    transform: scale(1.1);
}


* {box-sizing: border-box;}

.img-magnifier-container {
  position: relative;
}

.img-magnifier-glass {
  position: absolute;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 100px;
  height: 100px;
}

* {box-sizing: border-box}

/* Container needed to position the overlay. Adjust the width as needed */
.container-image {
  position: relative;
  width: 50%;
  max-width: 300px;
}

/* Make the image to responsive */
.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

/* When you mouse over the container, fade in the overlay title */
.container:hover .overlay {
  opacity: 1;
}

.thumbnail-internal {
  width: 200px; /* Set the width of the thumbnail frame */
  height: 150px; /* Set the height of the thumbnail frame */
  object-fit: contain;
  overflow: hidden; /* Ensure that any content exceeding the frame dimensions is hidden */
  position: relative; /* Needed for absolute positioning */
}

html, body {
      height: 100%;
    }
    /* The main content will take up the remaining space */
    .content {
      flex: 1 0 auto;
    }
    /* Sticky footer will be fixed at the bottom */
    .footer {
      flex-shrink: 0;
    }

