.main-area {
  display: flex;
  width: 393px;
  height: 784px;
  padding: 18px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  margin: 20px auto auto auto;
  background-color: #F2F2F2;
}

.destaque-area {
  display: flex;
  width: 393px;
  padding: 18px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  margin: 20px auto auto auto;
  background-color: #F2F2F2;
}

.destaque-area .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.destaque-area h1 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* 28px */
}

.destaque-area h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 20px */
}

.image-area {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  background: no-repeat top center;
  background-size: auto 100%;
}

.image-area .title {
  display: flex;
  padding: 18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.image-area .destaque {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}

.image-area h1 {
  color: #F2F2F2;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* 28px */
}

.image-area h2 {
  color: #F2F2F2;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 20px */
}

.image-area p {
  color: #F2F2F2;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.image-area p span {
  color: #BABABA;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.nav-area {
  display: flex;
  width: 393px;
  padding: 0 18px 0px 18px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: auto;
  background-color: #F2F2F2;
}

.nav-area .nav-item {
  border-top: 1px solid #333;
  display: flex;
  width: 360px;
  padding: 12px 18px 18px 18px;
  gap: 40px;
}

.nav-area .nav-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333;
}

.nav-area .nav-item a:hover,
.nav-area .nav-item a.active {
  color: #666;
  border-bottom: 1px solid #333;
}

.nav-area .nav-item .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
}

.nav-area .nav-item .home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  align-self: flex-start;
}

.nav-area .nav-item .saves {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  align-self: flex-start;
}

.nav-area .nav-item .profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  align-self: flex-start;
}

.prev-main {
  position: absolute;
  left: 25%;
  top: 50%;
  font-size: 40px;
}

.next-main {
  position: absolute;
  right: 25%;
  top: 50%;
  font-size: 40px;
}

.swiper-container {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  position: relative;
  margin: 10px 0;
}

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

.swiper-slide img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.status-boxes .info-box,
.usage-boxes .info-box {
  min-height: 95px;
}

.status-boxes > [class*=col-],
.usage-boxes > [class*=col-] {
  display: flex;
}

.status-boxes > [class*=col-] > .info-box,
.usage-boxes > [class*=col-] > .info-box {
  width: 100%;
}

.accordion-header .collapse-icon {
  transition: transform 0.2s ease-in-out;
}

.accordion-header[aria-expanded=true] .collapse-icon {
  transform: rotate(90deg);
}

.usage-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  cursor: help;
  transition: transform 0.2s ease;
}

.usage-indicator:hover {
  transform: scale(1.2);
}

.usage-low {
  background-color: #28a745;
  box-shadow: 0 0 4px rgba(40, 167, 69, 0.5);
}

.usage-medium {
  background-color: #ffc107;
  box-shadow: 0 0 4px rgba(255, 193, 7, 0.5);
}

.usage-high {
  background-color: #dc3545;
  box-shadow: 0 0 4px rgba(220, 53, 69, 0.5);
  animation: pulse-red 1.5s infinite;
}

.usage-loading {
  background-color: #6c757d;
  animation: pulse-gray 1s infinite;
}

.usage-unknown {
  background-color: #6c757d;
}

@keyframes pulse-red {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes pulse-gray {
  0%, 100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

.console-log {
  background-color: #1e1e1e;
  color: #d4d4d4;
  font-family: "Consolas", "Monaco", "Courier New", monospace;
  font-size: 12px;
  padding: 12px;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-all;
}

.console-log code {
  display: block;
  color: inherit;
  background: none;
  padding: 0;
  line-height: 1.6;
}

.console-log .text-primary {
  color: #569cd6 !important;
}

.console-log .text-purple {
  color: #c586c0 !important;
}

.badge-purple {
  background-color: #6f42c1;
  color: white;
}

.text-purple {
  color: #6f42c1 !important;
}

