.read {
  font-weight: bold;
  font-size: x-large;
}

.main {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

button {
   width: 100%
}

.padding-top {
  padding-top: 16px;
}

.pointer {
  cursor: pointer;
}

.inline {
  display: inline-flex;
}

.inline img {
  margin-left: 10px;
  width: 39px;
}

/* Modal */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: var(--bg);
  /* background-color: #fefefe; */
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.modal-body {
  padding-top: 21px;
  padding-bottom: 21px;
}

/* The Close Button */
.closeModal {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.closeModal:hover,
.closeModal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.logo-wrapper {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1000; /* Ensure it's on top of most other elements */
}

.logo {
  width: 100px; /* Adjust size as needed */
  height: auto;
}