/* [project]/src/css/Dashboard/Home.css [app-client] (css) */
.Main {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.greetings {
  background-image: url("/dashboard/Greetings_bg.png");
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 5%;
}

.greetings h2 {
  font-size: 48px;
}

.greetings span {
  opacity: .6;
  font-size: 24px;
  font-weight: 500;
}

@media screen and (width <= 1280px) {
  .Services {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media screen and (width <= 1024px) {
  .greetings h2 {
    font-size: 38px;
  }

  .greetings span {
    font-size: 20px;
  }
}

@media screen and (width <= 767px) {
  .greetings {
    border-radius: 16px;
    padding: 24px;
  }

  .greetings h2 {
    margin-bottom: 8px;
    font-size: 28px;
  }

  .greetings span {
    font-size: 16px;
  }
}

@media screen and (width <= 480px) {
  .greetings {
    border-radius: 14px;
    padding: 20px;
  }

  .greetings h2 {
    font-size: 24px;
  }

  .greetings span {
    font-size: 14px;
  }
}


/* [project]/src/css/Dashboard/Service.css [app-client] (css) */
.ServiceHeader {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.grid-service {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  display: grid;
}

.ServiceItem {
  border-radius: 32px;
  outline: 1px solid #ffffff80;
  flex-direction: column;
  gap: 16px;
  padding: 29px 33px;
  display: flex;
}

.ServiceItem p {
  margin: 8px 0;
  font-size: 24px;
}

.ServiceItem h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
}

.ServiceGoto {
  color: #000;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 16px;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s;
}

.ServiceGoto:hover {
  background-color: #f0f0f0;
}

.ServiceGoto.hover-red:hover {
  box-shadow: inset 0 0 0 4px var(--color-red);
}

.ServiceGoto.hover-green:hover {
  box-shadow: inset 0 0 0 4px var(--color-green);
}

.ServiceGoto.hover-yellow:hover {
  box-shadow: inset 0 0 0 4px var(--color-yellow);
}

.ServiceStatus {
  color: #000;
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
  margin-top: 16px;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (width <= 1024px) {
  .grid-service {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ServiceItem {
    border-radius: 24px;
    padding: 24px 28px;
  }

  .ServiceItem p {
    font-size: 20px;
  }

  .ServiceItem h2 {
    font-size: 28px;
  }
}

@media screen and (width <= 767px) {
  .grid-service {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .ServiceItem {
    border-radius: 20px;
    padding: 20px 24px;
  }

  .ServiceItem p {
    font-size: 16px;
  }

  .ServiceItem h2 {
    font-size: 24px;
  }

  .ServiceGoto, .ServiceStatus {
    border-radius: 12px;
    padding: 6px 0;
    font-size: 14px;
  }
}

.ServiceHeaderId {
  font-size: inherit;
  font-weight: inherit;
  opacity: .3;
}

.vmHelper {
  justify-content: space-between;
  gap: 70px;
  margin-top: 42px;
  display: flex;
}

.vmItem {
  flex-direction: column;
  gap: 20px;
  width: 70%;
  display: flex;
}

.vmInfo {
  background: #ffffff0a;
  border-radius: 20px;
  outline: 1px solid #ffffff19;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  padding: 24px 32px;
  display: flex;
}

.vmIp {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.textGradient {
  font-size: 40px;
  font-weight: 500;
}

.ipDisplay {
  background: linear-gradient(90deg, #fff 0%, #9df2ff 31.58%, #2f2577 63.16%);
  -webkit-text-fill-color: transparent;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.statusDisplay {
  background: linear-gradient(90deg, #fff 0%, #9dffaf 25.06%, #2f7725 50.13%);
  -webkit-text-fill-color: transparent;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.ipName {
  font-size: 20px;
  font-weight: 400;
}

.subName {
  align-items: center;
  font-size: 32px;
  font-weight: 500;
  display: flex;
}

.vmCounters {
  flex-wrap: wrap;
  justify-content: right;
  gap: 40px;
  width: 100%;
  height: fit-content;
  display: flex;
}

.vmCounterInfo {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  display: flex;
}

.vmCounterText {
  text-align: center;
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.vmCounterHeader {
  font-size: 1rem;
  font-weight: 500;
}

.vmCounterFooter {
  font-size: 12px;
  font-weight: 700;
}


/*# sourceMappingURL=src_css_Dashboard_c4084238._.css.map*/