body {
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
    display: flex;
    flex-direction: column;  /* Stack content vertically */
}
html, body {
    height: 100%;  /* Make sure the body takes up the full height of the viewport */
    margin: 0;
}
main {
    flex-grow: 1;  /* Allow main content to expand to fill the available space */
    overflow-y: auto;  /* Ensure content can scroll */
    padding-bottom: 50px; /* Ensure there's space at the bottom for the footer */
    
}
.navbar-dark .navbar-brand {
    color: #ffffff;
}
.navbar-dark .nav-link {
    color: #e0e0e0;
}

/* ERROR */

.error-page {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .error-page h1 {
    font-size: 6rem;
    font-weight: bold;
    color: #dc3545; /* Red color for the error */
  }
  .error-page p {
    font-size: 1.25rem;
    color: #6c757d;
  }
  .error-page a {
    color: #007bff;
    text-decoration: none;
  }
  .error-page a:hover {
    
    text-decoration: underline;
  }
footer {
    background-color: #333;
    color: white;
    padding: 0.5rem;
    width: 100%;
    text-align: right;
    justify-content: center;
    font-size: 0.8rem; 
    margin-top: auto; 
}
footer a {
    color: white;
    font-size: 0.8rem;
}
.page-container {
    /* Make it main and scroll inside it */
}
.nav-item-separator-right{
    border-color: white;
    border-right-style: groove;
}
.container-centered-block{
  display: block;
  text-align: center;
}
.container-card-border{
  border: white;
  border-radius: 5px;
  border-style: solid;
  margin: 1rem;
  padding: 1rem;
  height: 100%;
}
.img-fit{
 height: 100%; 
 max-height: 3rem;
 border-color: white;
 border-radius: 3px;
 border-style: groove;

}
.img-icon{
  max-height: 3rem;
  max-width: 3rem;

}
.list-container{
  padding: 0.5rem;
  margin: 2px;
  border-color: white;
  border-radius: 3px;
  border-style: groove;
  display: flex;
}
.list-item{
  text-align: center;
  font-weight: bold;
}
pre {
  background-color: #424242;
  border: 1px solid #e9ecef;
  border-radius: 0.25rem;
  padding: 1rem;
  position: relative;
}

.copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}