﻿/* Tag Management Admin Styles */
.stats-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

    .stats-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

.stats-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stats-content h6 {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.stats-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: #2c3e50;
}

.tag-card {
    transition: all 0.2s;
    cursor: pointer;
    height: 100%;
}

    .tag-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.tag-cloud-admin {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.tag-cloud-item-admin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

    .tag-cloud-item-admin:hover {
        background: #e9ecef;
        border-color: #0d6efd;
    }

    .tag-cloud-item-admin.selected {
        background: #0d6efd;
        color: white;
        border-color: #0d6efd;
    }

.tag-cloud-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
