/* frontend/src/components/AppMenu.css */

.app-menu {
    position: fixed;
    width: 100%;
    margin-top: 0px;
    z-index: 999;
}
  
  .menu-container {
    display: none;
    width: 95%; /* Increase width by 5% */
  }
  
  .menu-container.active {
    display: block;
  }
  
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-gap: 8px;
    margin: 20px 0;
  }
  
  .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    color: black;
    width: 75px; 
    height: 75px; 
  }
  
  .menu-item a {
    text-decoration: none;
    color: inherit;
  }
  
  .sticky-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    color: white;
    width: 75px; 
    height: 75px; 
    margin-top: 0;
    margin-bottom: 0;
  }

  .menu-link.disabled {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    color: gray;
    width: 75px; 
    height: 75px; 
  }


  .menu-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .menu-title {
    font-size: 0.8em; /* Adjust the font size as needed */
    margin-top: 5px; /* Add some margin to separate the icon and text */
    text-align: center; /* Center the text horizontally */
    flex-grow: 1; /* Allow the title to grow to fill available space */
  }
  
  .more-item {
    display: flex; /* Use flexbox */
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    color: black;
  }

  .icon-circle {
    width: 50px; /* Increase width */
    height: 50px; /* Increase height */
    background-color: white;
    border-radius: 50%; /* Ensures the circle shape */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px; /* Adjust spacing between circle and text */
  }
  
  .icon {
    color: black; /* Adjust the color of the icon */
    font-size: 20px; /* Adjust the size of the icon as needed */
  }

  .icon-disabled {
    color: gray; /* Adjust the color of the icon */
    font-size: 20px; /* Adjust the size of the icon as needed */
  }


  
  
/* Ensure the body takes full height and margin is zero */
html, body {
  height: 100%;
  margin: 0;
}

/* Main layout container */
.main-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures that the layout takes the full viewport height */
}

/* Navbar container styling */
.navbar-container {
  background-color: #164e63; 
  position: fixed; /* Fixed position for the navbar */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; 
  overflow: hidden;
}

/* Workarea container styling */
.workarea-container {
  background-color: #164e63; 
  margin-top: 3rem; 
  padding: 1rem; 
  flex: 1; 
}

/* Footer container styling */
.footer-container {
  margin-top: auto;
  padding: 1rem; 
  background-color: #164e63; 
}

/* Navbar responsive adjustments */
@media (max-width: 768px) {
  .navbar-container {
    z-index: 1000;
  }
}

@media (min-width: 1024px) { 
  body {
    background-color: #164e63; 
  }
}

.book-item .details-container button {
  width: inherit !important;
 
  margin-bottom: 20px !important;
  padding: 10px !important;
  background-color: #164e63 !important;
  color: white !important;
  cursor: pointer !important;
}

.book-item .details-container button {
  box-sizing: border-box;
  border: none;
  transition: background-color 0.3s ease;
}


.login-container {
    text-align: center;
    margin-top: 20px;
  }
  
  .human-button {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    background-color: #4caf50;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  .human-button:hover {
    background-color: #45a049;
  }
  
  .text-red-600 {
    color: red;
  }

  
.canvas-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;  
    height: 500px;  
  }
  
  .responsive-canvas {
    width: 100%;
    height: auto;
  }
  
.qr-reader {
    width: 430px;
    height: 100vh;
    margin: 0 auto;
    position: relative;
  }
  
  .qr-reader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .qr-reader .qr-box {
    width: 100% !important;
    left: 0 !important;
  }
  
  .qr-reader .qr-frame {
    position: absolute;
    fill: none;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  
  /* Media Queries for mobile screens */
  @media (max-width: 426px) {
    .qr-reader {
      width: 100%;
    }
  }
/* frontend/src/components/PaymentComponent.css */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #164e63;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .payment-form {
    background-color: #164e63;
    padding: 20px;
    border-radius: 5px;
  }
  
  .payment-form h2 {
    margin-bottom: 20px;
  }
  
  .payment-form label {
    display: block;
    margin-bottom: 10px;
  }
  
  .payment-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    max-height: 250px; 
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .payment-form select {
    max-width: 100%;
    max-height: 250px; 
    overflow-y: auto;
}


  .payment-form .buttons {
    display: flex;
    justify-content: flex-end;
  }
  
  .payment-form button {
    margin-left: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .payment-form button:hover {
    background-color: #0056b3;
  }

  .small-input {
    width: 50px; 
}

.error {
  color: red;
  font-size: 1.2em; 
  margin-left: 0.4em;
  margin-top: 0.2em; 
}


.payment-initiated {
  width: 70%;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #e6e3e3;
}

.payment-initiated h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.payment-initiated h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.payment-initiated p {
  margin-bottom: 5px;
}

.payment-initiated .buttons {
  margin-top: 20px;
}

.payment-initiated button {
  padding: 10px 20px;
  margin-right: 10px;
  font-size: 16px;
  cursor: pointer;
}

.payment-initiated button:last-child {
  margin-right: 0;
}


button:disabled {
  background-color: #4f4e4e; /* Gray background color */
  color: #999999; /* Light gray text color */
  cursor: not-allowed; /* Change cursor to not-allowed */
}
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 100%;
    height: auto;
    margin-left: 5px;
  }
  
  .image-wrapper {
    text-align: center;
    width: 100%;
    height: auto;
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .about-think5whys-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .about-think5whys-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
/* styles.css */
.sparkle-effect {
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: #048479;
    animation: sparkle-animation 2s infinite;
  }
  
  @keyframes sparkle-animation {
    0%, 100% {
      text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.8), 
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(255, 255, 0, 0.3),
        0 0 25px rgba(255, 215, 0, 0.2),
        0 0 30px rgba(255, 165, 0, 0.1);
    }
    50% {
      text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.9), 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 25px rgba(255, 255, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.3),
        0 0 35px rgba(255, 165, 0, 0.6);
    }
  }
.space {
    position: relative;
    width: 500px;
    height: 500px;
    background-color: black;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .earth {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 100px;
    color: blue;
    transform: translate(-50%, -50%);
  }
  
  /* This container orbits the earth */
  .rocket-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform-origin: center center;
  }
  
  .launched {
    animation: rotate-around-earth 5s linear infinite;
  }
  
  /* The rocket itself rotates around its axis */
  .rocket {
    position: absolute;
    top: -250px; /* Position rocket in the orbit's radius */
    left: 50%;
    font-size: 40px;
    color: red;
    transform-origin: center;
    animation: rotate-rocket 1s linear infinite;
    transform: translateX(-50%);
  }
  
  @keyframes rotate-around-earth {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotate-rocket {
    0% {
      transform: translateX(-50%) rotate(0deg);
    }
    100% {
      transform: translateX(-50%) rotate(360deg);
    }
  }
  
  .launch-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 16px;
    background-color: white;
    border: none;
    cursor: pointer;
  }
  
.tube {
    width: 60px;
    height: 200px;
    border-top: 0px solid hsl(0, 50%, 98%);
    border-left: 2px solid hsl(0, 50%, 98%);
    border-right: 2px solid hsl(0, 50%, 98%);
    border-bottom: 2px solid hsl(0, 50%, 98%);
    border-radius: 10px;
    margin: 0 10px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
    cursor: pointer;
  }
  
  .selected {
    border-color: #ff5733;
  }
  
  .ball {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 5px 0;
  }
  
  .ball-1 { background-color: red; }
  .ball-2 { background-color: blue; }
  .ball-3 { background-color: green; }
  .ball-4 { background-color: yellow; }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .applausebub-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .applausebub-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .artflow-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .artflow-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .donaqr-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .donaqr-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .lifechronicles-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .lifechronicles-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .authordesk-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .authordesk-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .besure-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .besure-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .bigdata-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .bigdata-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .bookfusion-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .bookfusion-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .bpmforce-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .bpmforce-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .breakinglive-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .breakinglive-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .dictabook-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .dictabook-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.main-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .top-section
  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  

  .bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 8px 0px;
    width: 100%;
 }


  .top-links
 {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 0;
  }

  .button-links {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 5px;
  }

  .links a,
  .location-links a
 {
    margin-right: 4px;
    color: white; 
  }

  .button-links a {
    margin-right: 4px;
    color: white; 
  }
  
  .side-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2px;
    border: 1px solid yellow;
  }

  .side-buttons-box img {
    max-width: 100%; 
  }

  .bottom-buttons-box {
    display: flex;
    text-align: center;
    margin: 4px;
    padding: 0px; 
  }

  
  .image-container {
    display: flex;
  }
  
  .image-wrapper {
    flex: 1;
    width: 100%
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
  
  .side-links {
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    margin-left: 2px;
  }
  
  .side-links a {
    margin-bottom: 10px;
    color: white; 
  }
  
  .coachingdiary-sidelink-style {
    margin-left: 4px;
    margin-right: 4px;
    padding: 4px;
  }

  .right-bottom-corner {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }

  .coachingdiary-bottomlink-style {
    font-size: 20px; 
    margin-left: 8px;
    margin-right: 8px;
    padding: 4px;
  }

  .button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }

  .top-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .bottom-button-link {
    display: inline-block;
    padding: 2px 2px;
    margin-right: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  

  .button-link:hover {
    background-color: #0056b3; 
  }
  

  .centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .active-code {
    color: green;
  }
  
  .inactive-code {
    color: red;
  }
  
  @media (max-width: 768px) {
    .main-content {
      padding: 0 20px;
    }
    
    .top-section,
    .bottom-section {
      flex-direction: column;
    }
  }
  
.slider-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: auto;
  }
  
  .slider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
  }
  
  .slider:focus {
    opacity: 1;
  }
  
  .slider-container p {
    margin-bottom: 10px;
  }
  
.character-container {
    position: relative;
    width: 300px;
    height: 400px;
  }
  
  .character {
    width: 100%;
  }
  
  .mouth {
    position: absolute;
    bottom: 235px; /* Adjust based on your image */
    left: 50%;
    transform: translateX(-50%);
    width: 30px; /* Adjust size */
  }
  
  .eyes {
    position: absolute;
    top: 90px; /* Adjust based on your image */
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    transition: opacity 0.1s ease-in-out;
  }
  

/*# sourceMappingURL=main-31743c5a-31743c5a.58e6e8d016a36c83643f.css.map*/