body {
    background-color: #f8f9fa;
  }
  .container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
  }
  .header-text {
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
  }
  .list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .list-item span {
    margin-right: 10px;
  }

.auto-grow-textarea {
width: 100%;
min-height: 50px;
max-height: 500px;
overflow-y: auto;
resize: none; /* Impide el redimensionado manual */
}