/* =========================================
   Vendor Libraries - Third-party Dependencies
   Filename: vendor.css
   Description: Styles for external libraries (Tagify, Material Icons, etc.)
   ========================================= */

/* =========================================
   Material Icons
   ========================================= */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-feature-settings: normal;
}

/* =========================================
   Tagify Styles
   ========================================= */
.tagify {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible;
    z-index: 1;
}

.tagify__input {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 38px;
    border: 1px solid var(--bare-border-color, #e5e7eb);
    border-radius: var(--bare-radius-md, 6px);
    background: var(--bare-bg-white);
    padding: var(--bare-space-2) var(--bare-space-3);
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.tagify__input:focus {
    outline: none;
    border-color: var(--bare-primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.tagify__tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 2px;
    padding: 4px 8px;
    background: var(--bare-primary);
    color: white;
    border-radius: var(--bare-radius-sm, 4px);
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

.tagify__tag__removeBtn {
    margin-left: 4px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.tagify__tag__removeBtn:hover {
    opacity: 1;
}

.tagify__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bare-bg-white);
    border: 1px solid var(--bare-border-color, #e5e7eb);
    border-radius: var(--bare-radius-md, 6px);
    box-shadow: var(--bare-shadow-lg);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 4px;
}
