﻿/*Tag Component Styling*/

.tag-container {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    padding: 4px 8px 4px 12px;
    margin: 2px 4px 2px 0;
    font-size: 11px;
    font-family: Tahoma, sans-serif;
    font-weight: 500;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

    .tag-container:hover {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        transform: translateY(-1px);
    }

.tag-text {
    line-height: 1.2;
    white-space: nowrap;
    user-select: none;
}

.tag-remove-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .tag-remove-button:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    .tag-remove-button:active {
        transform: scale(0.95);
    }

    .tag-remove-button i {
        font-size: 14px;
        line-height: 1;
    }


    /*Tag Cell Styling*/
/*.tags-cell-td {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
}*/

.tags-list {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    flex: 1;
}

.tag-input {
    min-width: 100px;
    max-width: 150px;
    border: 1px dashed #ccc;
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-family: Tahoma;
    background: #f8f9fa;
    outline: none;
}

    .tag-input:focus {
        border-color: #5cb3ff;
        border-style: solid;
        background: white;
    }