/* Tags styling */
.tag-tags-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}

.tag-tag-small {
    background: #17a2b8;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
    margin: 1px;
}

.tag-tag-small:hover {
    background: #138496;
    text-decoration: none;
    color: white;
}

/* Tag badges in admin */
.tag-badge {
    background: #17a2b8;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
}

/* Tag input styling */
.tag-input-container {
    position: relative;
}

.tag-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.tag-suggestion {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.tag-suggestion:hover {
    background: #f8f9fa;
}

.tag-suggestion.selected {
    background: #007bff;
    color: white;
}

/* Tag cloud styling */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag-cloud-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-cloud-item:hover {
    background: #007bff;
    color: white;
    text-decoration: none;
    border-color: #007bff;
}

.tag-cloud-item.count {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.tag-cloud-item.count:hover {
    background: #0056b3;
    border-color: #0056b3;
} 