/* Trending Tags Sidebar Widget - Modern Style */
.tags-sb-block {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    margin-bottom: 24px;
    font-family: 'Noto Kufi Arabic', sans-serif;
}

.tags-sb-title {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    padding-bottom: 12px;
    margin-bottom: 15px;
    border-bottom: 2px solid #1e73be;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 25px;
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.tag-pill:hover {
    background: rgba(30, 115, 190, 0.1);
    color: #1e73be;
    border-color: #1e73be;
}

.tag-pill.act {
    background: #1e73be;
    color: #fff;
    border-color: #1e73be;
}
