/* From Uiverse.io by turbo_8123 */ 
.terminal-container {
  background-color: #101729;
  border-radius: 10px;
  border: 1px solid #1a222f;
  display: inline-block;   /* ✅ clave para que no se corte */
  flex-direction: column;
  padding: 20px;
  max-width: 450px;
  font-family: "Courier New", monospace;
margin: 2rem ; /* centrado con espacio vertical */

}
.infoo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem;

  /* ✅ Clave para que se adapten a altura variable */
  grid-auto-rows: auto;
  align-items: start;
}
.masonry-container {
  column-count: 2;
  column-gap: 2rem;
  padding: 2rem;
}
.top-side {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #212b3f;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.red-circle {
  width: 12px;
  height: 12px;
  background-color: #ef4444;
  border-radius: 50%;
  margin-right: 7px;
}

.yellow-circle {
  width: 12px;
  height: 12px;
  background-color: #eab308;
  border-radius: 50%;
  margin-right: 7px;
}

.green-circle {
  width: 12px;
  height: 12px;
  background-color: #22c55e;
  border-radius: 50%;
  margin-right: 15px;
}

.terminal-title {
  color: #fff;
  margin: 0;
}

.line {
  color: #fff;
}

.line:not(:last-child) {
  margin-bottom: 12px;
}

.dollar {
  color: #2282f4;
  margin-right: 15px;
}

.green-line {
  margin-bottom: 12px;
  color: #46cf79;
}

.line-1 {
  animation: green-color 3s infinite;
}

.line-2 {
  animation: green-color 3.5s infinite;
}

.line-3 {
  animation: green-color 2s infinite;
}

@keyframes green-color {
  0% {
    color: #2a7151;
  }

  50% {
    color: #46cf79;
  }

  100% {
    color: #2a7151;
  }
}

