
  .tag-container {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    padding: 5px;
    cursor: text;
    border-radius: 8px;
    background-color: white;
  }
  .tag {
    background-color: #257180;
    color: white;
    padding: clamp(1px, 1vw, 5px) clamp(2px, 1vw, 10px);
    border-radius: 15px;
    font-size: clamp(8px, 2vw, 12px);
    display: flex;
    align-items: center;
    margin: 1px;
  }
  .tag span {
    margin-left: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  .tag-input {
    border: none !important;
    flex: 1;
    padding: 5px;
    outline: none;
    font-size: clamp(8px, 2vw, 12px);
  }