@font-face {
  font-family: maple-mono;
  src: url(maple-mono-latin-500-normal.ttf); 
}

body {
    background-color: #f0f0f0;
    font-family: maple-mono;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    padding: 15px 0;
    font-size: 24px;
}

.content-section {
    display: none; 
}

.menu-item {
    cursor: pointer;
    color: #0056b3;
    font-weight: bold;
    display: inline-block;
    margin-right: 15px;
}

#info-templates ul li {
    cursor: pointer;
    color: #0056b3;
    margin-bottom: 10px;
}

#info-templates ul li:hover {
    text-decoration: underline;
}

button {
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-family: maple-mono;
    margin-left: 10px;
}

#loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 90px;
  height: 24px;
  padding: 2px 0;
  box-sizing: border-box;
  display: flex;
  animation: l5-0 3s infinite steps(6);
  background:
    linear-gradient(#000 0 0) 0 0/0% 100% no-repeat,
    radial-gradient(circle 3px,#eeee89 90%,#0000) 0 0/20% 100%
    #000;
  overflow: hidden;
}
.loader::before {
  content: "";
  width: 20px;
  transform: translate(-100%);
  border-radius: 50%;
  background: #ffff2d;
  animation: 
    l5-1 .25s .153s infinite steps(5) alternate,
    l5-2  3s        infinite linear;
}
@keyframes l5-1{ 
    0% {clip-path: polygon(50% 50%,100%   0,100% 0,0 0,0 100%,100% 100%,100% 100%)}
  100% {clip-path: polygon(50% 50%,100% 65%,100% 0,0 0,0 100%,100% 100%,100%  35%)}
}
@keyframes l5-2{ 
  100% {transform: translate(90px)}
}
@keyframes l5-0{ 
  100% {background-size:120% 100%,20% 100%}
}

#popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: white;
    
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    overflow: visible;
}