/* Tag Cloud Styles */
.tag-cloud-widget {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 30px;
  position: sticky;
  top: 20px;
}

.tag-cloud-title {
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-start;
}

.tag-cloud-item {
  display: inline-block;
  padding: 2px 8px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  color: #0085a1;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.75em;
}

.tag-cloud-item:hover {
  background: #0085a1;
  color: #fff;
  border-color: #0085a1;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 133, 161, 0.3);
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tag-cloud-widget {
    padding: 15px;
  }
  
  .tag-cloud-title {
    font-size: 1.3em;
  }
  
  .tag-cloud {
    gap: 8px;
  }
  
  .tag-cloud-item {
    padding: 4px 10px;
    font-size: 0.9em;
  }
}