html, body {
    background-color: rgba(248, 248, 250, 1);
    overflow: auto; /* Дозволяє прокручувати сторінку, якщо вміст перевищує розмір вікна */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Мінімальна висота вікна браузера */
    margin: 0;
}

h1 {
  font-size: calc(1.3rem + .6vw);
}

h2 {
  font-size: calc(1.1rem + .6vw);
}

h3 {
  font-size: calc(1rem + .6vw);
}

h4 {
  font-size: 1rem;
  font-weight: 500;
}

#div-logo {
  font-size: 24px;
  font-weight: 300;
  /* color: lightgray; */
}

#nav-main {
  background-color: rgba(12, 111, 106, 1);
}

#nav-item {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

#div-main {
  padding-top: 24px;
}

footer {
  position: sticky;
  bottom: 0;
  width: 100%; /* Розтягнути footer на всю ширину сторінки */
}

#footer-nav{
  font-size: 1rem;
}

/* Breadcrumbs */
/* Style the list */
ul.breadcrumb {
    list-style: none;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 8px;
    padding-right: 8px;
    background-color: rgba(12, 111, 106, 0.15);
  }

  /* Display list items side by side */
  ul.breadcrumb li {
    display: inline;
    font-size: 1rem;
    font-weight: 400;
  }

  /* Add a slash symbol (/) before/behind each list item */
  ul.breadcrumb li+li:before {
    padding: 4px;
    color: black;
    font-weight: 400;
    /* content: "/\00a0"; */
    content: "/";
  }

  /* Add a color to all links inside the list */
  ul.breadcrumb li a {
    /* color: #0d6efd; */
    color: #0d6efd;
    font-weight: 400;
    /* text-decoration: underline; */
    text-decoration: none;
  }

  /* Add a color on mouse-over */
  ul.breadcrumb li a:hover {
    color: black;
    font-weight: 400;
    text-decoration: underline;
  }
  

  .container {
    flex-grow: 1;
  }


a {
    color: #0d6efd;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
}

a:hover {
  color: black;
  font-weight: 400;
  text-decoration: underline;
}

#index-li {
  font-size: 1.2rem;
}

.listen-icon {
  cursor: pointer;
  color: white; /* Змініть колір на ваш смак */
  opacity: 0.7;
  font-size: 1em; 
}

.listen-icon:hover {
  cursor: pointer;
  color: white; /* Змініть колір на ваш смак */
  opacity: 1;
}

.span_with_styles
{
  background-color: rgba(255, 255, 255, 0.1); 
  border-radius: 8px; 
  padding: 2px;
  line-height: 1.8;
}

.span_with_styles:hover
{
  cursor: pointer;
  color: white;
  background-color: rgba(255, 255, 255, 0.2); 
}




