body {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1rem;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #7090B015 !important;
}

.main-content .content-inner {
  min-height: inherit;
}

.content-gateways {
  margin: 2rem auto;
  width: 90%;
}

.content-gateways .title-gateway {
  margin: 1rem 0 2rem;
}

.data-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.data-card {
  background-color: #D4E3FF;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .5rem;
  padding: 1rem;
  border-radius: .5rem;
}

.data-card h2 {
  font-size: .75rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: .25rem;
  position: relative;
  width: fit-content;
}

.data-card p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.status {
  display: block;
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  position: absolute;
  right: -.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.status.status-green {
  background-color: #4A9F0C;
}

.status.status-gray {
  background-color: #92929250;
}


.data-card p {
  font-size: .6rem;
  color: #232D42;
  font-weight: 500;
}

.data-card img {
  width: 3rem;
  border-radius: .25rem;
}


.content-graph {
  background-color: #FFF;
  margin: 3rem auto;
  padding: 1rem;
}

.btn-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
}

.btn-whatsapp img {
  width: 3rem;
}


.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.pagination a {
  color: black;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: background-color 0.3s;
  border: .01rem solid #ddd;
  font-size: .75rem;
  display: inline-block;
}

.pagination a.active {
  background-color: #4CAF50;
  color: white;
  border: 1px solid #4CAF50;
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
}

.pagination a.prev img {
  transform: rotate(180deg);
  opacity: .5;
}


@media (max-width: 1000px) {
  .data-cards {
    gap: 1rem;
  }
}

@media (max-width: 850px) {
  .data-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .content-gateways .title-gateway {
    font-size: 1.25rem;
  }
  .data-cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .title-gateway {
    font-size: 1.25rem !important;
  }
}

@media (min-width: 1700px) {
  .data-cards {
    gap: 2rem;
  }
  .data-card img {
    width: 4rem;
  }
}


