body {
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

  /* Navigation bar styles */
  .navbar {
    background-color: #333;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
  }

  .navbar-brand img {
    height: 40px;
    width: auto;
    margin-right: 10px;
  }

  .navbar-brand a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
  }

  .navbar-nav {
    display: flex;
  }

  .navbar-nav li {
    margin-left: 20px;
  }

  .navbar-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  } 
  




.footer-bottom {
    text-align: center;
    margin-bottom:10px;
    font-size:.9em;
  }




.pagination-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .pagination {
        display: flex;
        justify-content: center;
    }

    .pagination a {
        color: orange;
        padding: 8px 16px;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .pagination a.active {
        background-color: green;
        border-radius:50%;
        color: white;
        cursor: default;
    }

    .pagination a:hover:not(.active) {
        border-radius:50%;
        background-color: #ddd;
    }

    .pagination span {
        color: orange;
        padding: 8px 16px;
    }







.audio-button {
  position: fixed;
  bottom: 70px;
  left: 7px;
  width: 50px;
  height: 50px;
  background-color: purple;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
}

.audio-player {
  position: fixed;
  bottom: 68px;
  left: 7px;
  width: 0;
  height: auto;
  overflow: hidden;
  transition: width 0.5s;
  z-index: 9998;
  background-color: #333;
  border-radius: 5px;
}

.audio-controls {
  display: flex;
  align-items: center;
}
.audio-controls #volumeRange{
width:90%;
}
.audio-player .audio-controls #playPauseBtn img{
width:40px;  
}


.audio-time {
  font-size: 0.8em;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
label img {
 width: 50px;
 height: 50px;
}


table{
width: 80%; /* Set a width for the table */
margin: 0 auto; /* Center the table horizontally */
border-collapse: collapse; /* Collapse table borders */
}
th, td {
font-size:.8em;
color:black;
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd; /* Add a bottom border to cells */
}
th {
background-color: #00ffff; /* Light gray background for table headers */
}
tr:nth-child(even) {
background-color: grey; /* Alternate row background color */
}







.progress-container {
        width: 70vw;
        margin: auto;
        border: .1em solid black;
        position: relative; /* Added for positioning the text */
    }

    .progress-bar {
        width: 0%;
        height: 30px;
        background-color: #007bff;
        transition: width 0.5s ease-in-out;
    }

    .progress-text {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 0 10px;
    }


#output {
      position:relative;
      left:10px;
      padding: 10px;
    }
    #outputText {
        width: 100px;
        padding: 5px;
        border: none;
        pointer-events: none; /* Disable editing */
        user-select: none; /* Disable text selection */
    }
    #copyButton {
        width:auto;
        padding: 5px 10px;
        background-color: #007bff;
        color: white;
        border: none;
        cursor: pointer;
    }



.grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .item {
        position: relative;
        background-color: #f0f0f0;
        text-align: center;
        border: 1px solid #ccc;
        padding: 20px;
    }

    .text{
        position: absolute;
        top: 5px;
        left: 3px;
        color: #333;
        font-size:.7em;
        width:auto;
    }

    .number {
        margin-top:10px;
        color:black;
        font-size: 1.5em;
        font-weight: bold;
    }
.tooltip {
        position: absolute;
        top: -30px;
        left: 25%;
        width:300px;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.7);
        color: #fff;
        font-size:.7em;
        padding: 5px 10px;
        border-radius: 5px;
        visibility: hidden;
        z-index:5;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .item:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }

    @media (min-width: 768px) {
        .grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }



  


  .hover-message {
    position: relative;
    display: inline-block;
  }

  .hover-message::after {
    content: attr(title);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
  }

  .hover-message:hover::after {
    opacity: 1;
    visibility: visible;
  }



.container {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: fit-content;
    margin: auto;
  }

.form-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 500px;
    padding: 20px;
    border-radius: 5px;
    background-color: white;
    color: rgb(0, 0, 0);
    box-shadow: 0 0 10px rgb(0, 0, 0);
    z-index: 2000;
    
  }
.form-popup img{
  width:40%;
  margin-left:30%;
}
.form-popup input{
  width: 100%;
  margin-right:0%;
  box-sizing: border-box;
  border: none;
  border-bottom: 2px solid black; 
}
.form-popup p{
  font-weight:bold;
  text-align: center;
  margin-top:-5px;
}
.form-popup button {
  background-color: #4CAF50; /* Green background color */
  border: none; /* Remove default button border */
  color: white; /* White text color */
  padding: 12px 24px; /* Add some padding */
  text-align: center; /* Center the text */
  display: block; /* Display as inline-block */
  font-size: 16px; /* Set the font size */
  margin: 4px 2px; /* Add some margin */
  cursor: pointer; /* Change cursor to pointer on hover */
  border-radius: 4px; /* Add rounded corners */
  width: 80%;
  margin-left:10%;
}

.form-popup button:hover {
  background-color: #45a049; /* Change background color on hover */
}

.form-popup select{
  width: 60%;
  margin-right:0%;
  box-sizing: border-box;
  border: none;
  border-bottom: 2px solid black; 
}
.form-popup #output button{
  width:20%;
  display:inline-block;
}








.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    color: red;
}
.form-popup .active {
  background-color: #4CAF50;
  color: white;
}
  



    .heart {
        width: 50px;
        height: 50px; /* Ensure the height matches the width */
        background-image: url('https://533e59.claudeassets.com/20251110215827im_/https://leljoch.com/heart1.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        transition: transform 0.3s ease-in-out;
    }

    .heart.red {
        background-image: url('https://32f214.claudeassets.com/20251110215827im_/https://leljoch.com/heart2.png');
        animation: bounce 0.3s;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40%, 60% {
            transform: translateY(-15px);
        }
        70% {
            transform: translateY(-10px);
        }
    }












  .hamburger-button {
    position: fixed;
    top: 60px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
  }
  
  .hamburger-icon {
    width: 30px;
    height: 3px;
    background-color: orange;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger-icon::before,
  .hamburger-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: orange;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger-icon::before {
    transform: translateY(-10px);
  }
  
  .hamburger-icon::after {
    transform: translateY(10px);
  }
  
  .hamburger-button.open .hamburger-icon {
    background-color: transparent;
  }

  .hamburger-button.open .hamburger-icon::before {
    transform: rotate(45deg);
  }
  
  .hamburger-button.open .hamburger-icon::after {
    transform: rotate(-45deg);
  }

  .menu {
    position: fixed;
    top: 30px;
    left: -400px;
    width: 300px;
    height: 100%;
    background-color: #f1f1f1;
    padding: 60px 20px;
    transition: all 0.3s ease-in-out;
    z-index: 998;
  }
  
  .menu.open {
    left: 0;
  }
  
  .menu a, .menu button {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
  }
  
  .menu a:hover, .menu button:hover{
    background-color: #ddd;
  }
 


























  
  
  
  
  
  
  /* Styles for light mode */
  body {
    background-color: #f9f9f9;
    color: #333;
  }

  /* Styles for dark mode */
  body.dark-mode {
    background-color: #333;
    color: #f9f9f9;
  }















 .search-results {
      background-color: white;
      padding: 10px;
      max-height: 200px;
      overflow-y: auto;
      text-align:left;
}

.search-results a {
      display: block;
      padding: 5px;
      text-decoration: none;
      color: black;
}
.search-results a:hover {
      background-color: #e6e6e6;
}
.search-icon {
      position: fixed;
      border:solid .1em black;
      background-color:#fff;
      border-radius:50%;
      bottom: 15px;
      left: 25px;
      transform: translateX(-50%);
      width: 50px;
      height: 50px;
      cursor: pointer;
}
.search-popup {
      color:black;
      position: fixed;
      text-align:center;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: white;
      padding: 5px;
      border: 1px solid #ccc;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      display: none;
      min-width:300px;
      max-width:50vw;
}
.search-popup input{
  width:95%;
  border:none;
  border-bottom:black .1em solid; 
}











  .mode-switch {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }

  .mode-switch input[type="checkbox"] {
    opacity: 0;
    position: absolute;
  }

  .mode-switch label {
    display: block;
    width: 60px;
    height: 34px;
    background-color: #ccc;
    border-radius: 17px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .mode-switch label:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
  }

  .mode-switch input:checked + label {
    background-color: #4CAF50;
  }

  .mode-switch input:checked + label:after {
    transform: translateX(26px);
  }




































  .anchor-ad-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    padding: 10px;
    border-radius: 5px;
    display: none;
    z-index: 999;
    border: .1em dashed;
    background-color: #cccccc62;
  }

  .anchor-ad-container.active {
    display: block;
  }

  .anchor-ad-content {
    display: flex;
    align-items: center;
  }

  .anchor-ad-text {
    flex-grow: 1;
    margin-right: 10px;
  }

  .anchor-ad-close {
    cursor: pointer;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

  .vertical-ad {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 17vw;
    border: dashed .1em;
    border-radius: .5em;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    margin-top: 60px;
    background-color: #cccccc62;
  }

  .vertical-ad h4 {
    font-size: 2em;
    margin: auto;
  }

  .vertical-ad.left {
    left: 1vw;
  }

  .vertical-ad.right {
    right: 1vw;
  }















#wrapper {
  max-width: 70vw;
  margin:auto;
}
.pin {
  display: inline-block;
  width:100%;
  margin-bottom:5px;
  border: dashed .1em;
  border-radius: .5em;
}


.pin:hover{
  border: solid .15em;
}
.pin div{
  border-radius:5px;
  margin: 8px;
  border: .2em black;

}
.pin div img{
object-fit: contain;
width: 100%;
}
.pin div h4{
  position: relative;
  padding: 10px;
  padding: 2%;
  margin: 0%;
  margin-top: -7px;
}
#columns {
  column-gap: 5px;
  column-count: 2;
}
#wrapper #columns a{
  text-decoration: none;
  color: unset;
}







.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  background-color: #000000;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: -15px;
}
.dropdown-button:hover{
  background-color: green;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 130px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content button {
  color: black;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
  background-color: transparent;
  border: none;
  width: 90%;
  text-align: center;
  cursor: pointer;
}

.dropdown-content button:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}







@media (max-width: 768px) {
  #wrapper {
  max-width: 90vw;
  margin:auto;
}

.vertical-ad {
    display: none; /* Hide the vertical ads on mobile devices */
  }


  .navbar {
    height: auto;
    padding: 10px;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
  }

  .navbar-nav li {
    margin: 8px 0;
  }
}




@media (max-width: 500px) {
  #wrapper {
  max-width: 95vw;
  margin:auto;
}

#columns {
  column-gap: 5px;
  column-count: 1;
}
}
/*
     FILE ARCHIVED ON 22:35:14 Nov 10, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 09:04:03 Sep 11, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.398
  exclusion.robots: 0.038
  exclusion.robots.policy: 0.029
  esindex: 0.006
  cdx.remote: 6.701
  LoadShardBlock: 228.641 (3)
  PetaboxLoader3.resolve: 157.211 (4)
  PetaboxLoader3.datanode: 75.457 (4)
  load_resource: 73.923
*/