
/* Theme Cloud Styles */
.theme-cloud-section {
    margin-top: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.theme-cloud-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #0f172a;
}

.theme-cloud-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.theme-tag {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.theme-tag:hover {
    transform: translateY(-2px);
    border-color: #3b82f6;
    color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.theme-tag small {
    font-weight: 400;
    color: #94a3b8;
    margin-left: 4px;
}
