/* ============================================================
   tags.css — Tag input component
   Input container and tag chips.
   ============================================================ */

.tag-input-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    min-height: 38px;
    cursor: text;
}

.tag-input-container:focus-within {
    border-color: #3f51b5;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;

    padding: 0.2rem 0.5rem;
    background: #e8f0fe;
    color: #1a3fb4;
    border-radius: 999px;
    font-size: 0.7rem;
}

.tag-chip button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1;
    color: #1a3fb4;
}

#tag-input {
    border: none;
    outline: none;
    font-size: 0.75rem;
    flex: 1;
    min-width: 120px;
}

