/* Last Log card stretch */
.lastlog-card{
  min-height: clamp(780px, 80vh, 1100px);
  display: flex;
  flex-direction: column;
}

/* Let textarea grow fully inside the card */
.lastlog-card .identity-textarea{
  flex: 1;
  max-height: none;   /* 🔥 THIS removes the scroll trap */
}

/* Mobile safety */
@media (max-width:680px){
  .lastlog-card{
    min-height: auto;
  }
}
