 .cloud-container {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            min-height: 220px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 15px;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
        }

        .word-tag {
            display: inline-block;
            transition: transform 0.2s;
            font-weight: bold;
        }

        .word-tag:hover {
            transform: scale(1.2);
            color: #0d6efd !important;
            cursor: pointer;
        }

        #canvasWheel {
            max-width: 100%;
            height: auto;
        }