/* Tag Input Styles */
.tags-input-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    background-color: white;
}

.tags-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-input-container input {
    flex: 1;
    min-width: 150px;
    border: none;
    outline: none;
    padding: 0.5rem;
    font-size: 1rem;
}

.tags-input-container input:focus {
    box-shadow: none;
}

.tags-input-container .tag {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.tags-input-container .tag .delete {
    margin-left: 0.25rem;
} 


.search-container {
    transition: all 0.3s ease;
}

.search-container:focus-within {
    transform: scale(1.02);
}

.empty-state {
    padding: 3rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.empty-state:hover {
    background: #f1f3f5;
}

.search-icon {
    color: #6c757d;
    transition: all 0.3s ease;
}

.empty-state:hover .search-icon {
    color: #495057;
    transform: scale(1.1);
}

.badge-table {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.badge-table th {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.badge-table tr {
    transition: background-color 0.2s ease;
}

.badge-table tr:hover {
    background-color: #f1f3f5 !important;
}

.loading-spinner {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.fade-enter {
    opacity: 0;
}

.fade-enter-active {
    opacity: 1;
    transition: opacity 300ms ease-in;
}

.level-item .title {
    margin-bottom: 1.5rem;
}
