* {
  font-family: 'Arial';
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lgmk-logo {
  padding-top: 10px;
  width: 200px;
  display: block;
  margin: 0 auto
}

.main-title {
  font-size: 40px;
  font-weight: 100;
  padding-bottom: 5px;
}


.top-container {
  background-color: white
}

.gray-blanket {
  background-color: #e9ecef;
  width: 100vw;
  height: 100vh;
}

.p-10 {
  padding: 10px
}

.border-10 {
  border-radius: 10px;
}

.white {
  background-color: white;
}

.base-container {
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  /* Center horizontally */
  align-items: center;
}

.inline-block {
  display: inline-block;
}

.mb-15 {
  margin-bottom: 15px;
}

.block {
  display: block;
}

.text-center {
  text-align: center;
}

div#pum-data {
  padding: 10px 15px;
  background-color: white;
  box-shadow: 0px 0px 8px 2px lightgray;
  display: inline-block;
  border-radius: 10px
}

div#pum-data h3 {
  font-size: 26px;
  font-weight: 500;
}

div#pum-data p {
  text-align: left;
  font-size: 18px;
}

div#pum-data p span {
  font-weight: bold;
}

button {
  background-color: #f0f0f0;
  border: none;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

button:hover {
  background-color: #e0e0e0;
}

button:disabled {
  background-color: #ccc;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
}