body {
  margin: 0;
  color: rgb(92, 92, 92);
  font-family: Arial, Helvetica, sans-serif;
}
.dash-main {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 9.18rem);
  padding: 1.25rem;
  background-color: white;
  align-items: center;
  justify-content: center;
}
.all-apps {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem 4rem;
}
@media (min-width: 768px) {
  .all-apps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .all-apps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.each-app {
  grid-column: span 1 / span 1;
  display: flex;
  border-radius: 0.375rem;
  padding: 1.25rem;
  width: 20rem;
  max-height: 5.5rem;
  align-items: center;
}

.app-container {
  display: flex;
  flex-direction: column;
  width: 200%;
  gap: 8px;
  border-radius: 4px;
}
.app-info-svg {
  display: flex;
  align-items: center;
  gap: 4px;
}
.app-name {
  color: #334155;
  font-weight: 700;
  font-size: 16px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 60%;
  gap: 8px;
}

.env-btn {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 0.25rem;
  font-size: medium;
  border-radius: 4px;
  background-color: transparent;
  width: 3rem;
  text-align: center;
}
.env-btn:hover {
  background-color: #d4e0ea;
}

a {
  text-decoration: none;
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
}

.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 40;
  background-color: white;
  border-bottom: 1px solid rgb(133, 131, 131);
}

.header-container {
  padding: 1rem 2rem;
  border-color: rgba(146, 146, 149, 0.1);
  border-bottom-width: 1px;
}
.navs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.developernotes {
  background-color: rgb(14 165 233);
  border-radius: 4px;
  color: aliceblue;
  font-size: 14px;
  padding: 0.5rem;
}
.developernotes:hover {
  background-color: rgb(2 132 199);
}

.popover {
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  position: fixed;
  z-index: 50;
  padding: 0.5rem /* 8px */;
  max-width: 500px;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 0.375rem;
  border-width: 1px;
  transition-delay: 300ms;
  --tw-bg-opacity: 1;
  background-color: #c6c6c6;
  min-width: 220px;
}
.pocstat {
  display: flex;
  border-bottom: 1px solid #9b9b9b;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}

.Active {
  padding: 2px 6px;
  background-color: rgb(34 197 94);
  color: white;
  border-radius: 6px;
}
.Paused {
  padding: 2px 6px;
  background-color: #f74040;
  border-radius: 9999px;
}
.techstack {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.techicons {
  width: 40px;
  max-height: 40px;
  display: flex;
  padding-top: 8px;
  align-items: center;
  justify-content: center;
}

.svgicons {
  border-radius: 50%;
  border: 1px solid whitesmoke;
  object-fit: cover;
  background-color: #ebe9e9;
  cursor: pointer;
  width: 24px;
  height: 24px;
}
