body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
}

.pmm-index-loading-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  width: 100%;
  height: 100vh;
  background-color: #dbeafe;
  font-size: 1rem;
  color: #3b82f6;
}

.pmm-index-loading-contents-txt {
  animation: blink 1s ease-in-out 2s infinite alternate;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.15;
  }
}

.pmm-index-failed-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: sans-serif;
  width: 100%;
  height: 100vh;
  background-color: #fecaca;
  color: #ef4444;
  font-size: 1rem;
}
