
.admonitionblock td.icon .icon-note::before{content:"\f05a";color:#19407c}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--background-color);
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}


.button-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem 0.5rem;
  border: 2px solid #ccc;
  border-radius: 20px;
  min-width: 95%;
  /* Ensure the group takes full width of the container */
}

.button-group-title {
  position: absolute;
  top: -2.1rem;
  /* Position above the frame */
  background-color: var(--background-color);
  padding: 0 0.5rem;
  /* Padding to create space around the text */
  font-size: 1.25rem;
  /* Smaller font size */
  font-weight: 500;
  /* Less bold */
  color: #666666;

}

.button-group-top {
  margin-top: 1.0rem;
}

.button-group-sub-title {
  position: absolute;
  background-color: var(--background-color);
  padding: 0 0.5rem;
  font-size: 1.25rem;
  /* Smaller font size */
  font-weight: 500;
  /* Less bold */
  color: #666666;
}

.button-text {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--background-color);
}

.button-like {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 1000px;
  min-width: 600px;

  width: 90%;
  /* Top and bottom margin of 0.3rem, left and right margin of 0 */
  margin: 0.3rem 0;
  cursor: pointer;
  text-decoration: none;
}

.hover-effect {
  cursor: pointer;
  /* Change cursor to pointer */
}

.hover-effect:hover {
  background-color: var(--hover-color);
  /* Darker shade for hover effect */
  transform: translateY(-5px);
  /* Slight lift on hover */
  transition: background-color 0.3s, transform 0.3s;
  /* Smooth transition for hover effects */
}


.logo-button {
  /* padding: 0.2rem; */
  /* Remove padding */
  padding-top: 0.2rem; /* Adjust the value as needed */
  padding-bottom: 0.2rem; /* Adjust the value as needed */
}

.center {
  padding: 0;
  margin: 0;
}

.logo-img {
  max-width: 300px;
  max-height: 100px;
  display: block;
}


@media (prefers-color-scheme: dark) {
  body,
  .container,
  .button-group
  .button-group-title,
  .button-group-sub-title {
    background-color: var(--background-color-dark);
  }

  .button-group-title,
  .button-group-sub-title {
    color: var(--border-color);
  }

  body {
    padding-top: env(safe-area-inset-top);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
  }

  /* Add any other elements you want to style for dark mode */
}


/* Media query for mobile devices */
@media only screen and (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 768px;
    padding: 1rem 0 0 0;
    /* Add padding to the top */
    ;
  }

  .button-group-top {
    margin-top: 0.25rem;
  }

  .button-group {
    min-width: 300px;
  }

  .button-like {
    width: 95%;
    min-width: 95%;
    max-width: 100%;
  }

  .center img {
    max-width: 130px !important;
    ;
    /* Adjust the size of the logo */
    /* max-height: 80px !important;; */
    /* Adjust the size of the logo */
  }

  .hover-effect:hover {
    /* background-color: initial; Remove hover background color */
    transform: none;
    /* Remove hover transform */
    transition: none;
    /* Remove hover transition */
  }
}


